87. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 10/26/2017 10:43:14 PM Eastern 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.

87.1 Files compared

# Location File Last Modified
1 OSCIF_BMS_v2_iter 2_September_2017.zip\BMS_Cand\BMS_Build_C72898\BMS_Source-BuildC72898.zip\C72898\Source\Sources\Database\CreationScripts\BMS\2.Functions dbo.ufn_Equal.sql Wed Oct 23 12:51:08 2013 UTC
2 OSCIF_BMS_v2_iter 2_September_2017.zip\BMS_Cand\BMS_Build_C72898\BMS_Source-BuildC72898.zip\C72898\Source\Sources\Database\CreationScripts\BMS\2.Functions dbo.ufn_Equal.sql Thu Oct 26 15:36:45 2017 UTC

87.2 Comparison summary

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

87.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

87.4 Active regular expressions

No regular expressions were active.

87.5 Comparison detail

  1   /****** Ob ject:  Use rDefinedFu nction [db o].[ufn_Eq ual]    Sc ript Date:  03/22/201 2 10:39:32  ******/
  2   IF  EXISTS  (SELECT *  FROM sys. objects WH ERE object _id = OBJE CT_ID(N'[d bo].[ufn_E qual]') AN D type in  (N'FN', N' IF', N'TF' , N'FS', N 'FT'))
  3   DROP FUNCT ION [dbo]. [ufn_Equal ]
  4   GO
  5  
  6   SET ANSI_N ULLS ON
  7   GO
  8   SET QUOTED _IDENTIFIE R ON
  9   GO
  10   -- ======= ========== ========== ========== ========
  11   -- Author:                 PII
  12   -- Create  date: 31.0 8.2011
  13   -- Descrip tion: Comp ares two s trings ign oring case .
  14   -- ======= ========== ========== ========== ========
  15   CREATE FUN CTION [dbo ].[ufn_Equ al]
  16   (
  17           @V ALUE1 NVAR CHAR(MAX),
  18           @V ALUE2 NVAR CHAR(MAX)
  19   )
  20   RETURNS BI T
  21   AS
  22   BEGIN
  23           IF  @VALUE1 I S NULL AND  @VALUE2 I S NULL
  24                    RETU RN 1
  25           IF  @VALUE1 I S NULL
  26                    RETU RN 0
  27           IF  @VALUE2 I S NULL
  28                    RETU RN 0
  29           IF  UPPER(@VA LUE1)=UPPE R(@VALUE2)
  30                    RETU RN 1
  31           RE TURN 0
  32   END
  33   GO