129. EPMO Open Source Coordination Office Redaction File Detail Report

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

129.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\4.Stored Procedures dbo.usp_Get_Vista_Integration_Log.sql Wed Oct 23 12:51:10 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\4.Stored Procedures dbo.usp_Get_Vista_Integration_Log.sql Thu Oct 26 15:43:48 2017 UTC

129.2 Comparison summary

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

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

129.4 Active regular expressions

No regular expressions were active.

129.5 Comparison detail

  1   IF  EXISTS  (SELECT *  FROM sys. objects WH ERE object _id = OBJE CT_ID(N'[d bo].[usp_G et_Vista_I ntegration _Log]') AN D type in  (N'P', N'P C'))
  2   DROP PROCE DURE [dbo] .[usp_Get_ Vista_Inte gration_Lo g]
  3   GO
  4   SET ANSI_N ULLS ON
  5   GO
  6   SET QUOTED _IDENTIFIE R ON
  7   GO
  8  
  9   -- ======= ========== ========== ========== ========
  10   -- Author:                Valent inm
  11   -- Create  date: 06/2 9/2012
  12   -- Descrip tion: Get  vista inte gration lo g.
  13   -- ======= ========== ========== ========== ========
  14   CREATE PRO CEDURE [db o].[usp_Ge t_Vista_In tegration_ Log]
  15           @I ENS 
VARCHAR(MA X),
  16           @V ISTA_FILES  
VARCHAR(MA X),
  17           @V ISTA 
VARCHAR(50 )
  18   AS
  19   SET NOCOUN T ON
  20   BEGIN
  21  
  22           SE LECT V.IEN , V.VISTA_ FILE
  23           FR OM dbo.VIS TA_INTEGRA TION_LOG A S V
  24                    INNE R JOIN dbo .fn_Split_ String(@IE NS, ',') A S A ON V.I EN = A.VAL UE
  25           WH ERE V.VIST A_FILE = C ONVERT(CHA R(2), @VIS TA_FILES)  AND V.VIST A = @VISTA
  26  
  27   END
  28   GO
  29  
  30