3. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 5/2/2019 1:17:38 PM Central Daylight Time. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.

3.1 Files compared

# Location File Last Modified
1 C:\AraxisMergeCompare\Pri_un\EPRS\EPRS_ODSDB\EPRS.ODSDB\EPRS.ODSDB\Programmability\Stored Procedures uspGetADDomains.sql Thu Apr 18 16:51:44 2019 UTC
2 C:\AraxisMergeCompare\Pri_re\EPRS\EPRS_ODSDB\EPRS.ODSDB\EPRS.ODSDB\Programmability\Stored Procedures uspGetADDomains.sql Tue Apr 30 13:51:56 2019 UTC

3.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 2 54
Changed 1 50
Inserted 0 0
Removed 0 0

3.3 Comparison options

Whitespace
Character case Differences in character case are significant
Line endings Differences in line endings (CR and LF characters) are ignored
CR/LF characters Not shown in the comparison detail

3.4 Active regular expressions

No regular expressions were active.

3.5 Comparison detail

  1   -- ======= ========== ========== ========== ========
  2   -- Descrip tion: Retu rns Active  Directory  domain li st
  3   --
  4   -- Mainten ance Log:
  5   --
  6   -- Update  By     Upd ate Date      Descrip tion
  7   -- ------- ----     - --------      ------- ---------- ---------- -
  8   -- ======= ========== ========== ========== ========
  9  
  10   CREATE PRO CEDURE [db o].[uspGet ADDomains]
  11    AS
  12   BEGIN
  13           --  SET NOCOU NT ON adde d to preve nt extra r esult sets  from
  14           --  interferi ng with SE LECT state ments.
  15           SE T NOCOUNT  ON;
  16  
  17           BE GIN TRY
  18  
  19                     SELECT ' DOM A IN '
  20                     UNION SELE CT ' DOM A IN '
  21                     UNION SELE CT ' DOM A IN '
  22                     UNION SELE CT ' DOM A IN '
  23                     UNION SELE CT ' DOM A IN '
  24                     UNION SELE CT ' DOM A IN '
  25                     UNION SELE CT ' DOM A IN '
  26                     UNION SELE CT ' DOM A IN '
  27                     UNION SELE CT ' DOM A IN '
  28                     UNION SELE CT ' DOM A IN '
  29                     UNION SELE CT ' DOM A IN '
  30                     UNION SELE CT ' DOM A IN '
  31                     UNION SELE CT ' DOM A IN '
  32                     UNION SELE CT ' DOM A IN '
  33                     UNION SELE CT ' DOM A IN '
  34                     UNION SELE CT ' DOM A IN '
  35                     UNION SELE CT ' DOM A IN '
  36                     UNION SELE CT ' DOM A IN '
  37                     UNION SELE CT ' DOM A IN '
  38                     UNION SELE CT ' DOM A IN '
  39                     UNION SELE CT ' DOM A IN '
  40                     UNION SELE CT ' DOM A IN '
  41                     UNION SELE CT 'D OM A IN '
  42                     UNION SELE CT ' DOM A IN '
  43                     UNION SELE CT ' DO MA IN '
  44                    ;
  45           EN D TRY
  46  
  47           BE GIN CATCH
  48                    PRIN T 'There w as an erro r getting  the active  directory  details'  + CHAR(13) ;
  49                    SELE CT * FROM  dbo.ufnGet ErrorInfo( );
  50                    EXEC  uspRaiseE rrorInfo;
  51           EN D CATCH
  52   END