158. EPMO Open Source Coordination Office Redaction File Detail Report

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

158.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_Insert_Vista_Integration_Log.sql Wed Oct 23 12:51:11 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_Insert_Vista_Integration_Log.sql Thu Oct 26 15:43:48 2017 UTC

158.2 Comparison summary

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

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

158.4 Active regular expressions

No regular expressions were active.

158.5 Comparison detail

  1   IF  EXISTS  (SELECT *  FROM sys. objects WH ERE object _id = OBJE CT_ID(N'[d bo].[usp_I nsert_Vist a_Integrat ion_Log]')  AND type  in (N'P',  N'PC'))
  2   DROP PROCE DURE [dbo] .[usp_Inse rt_Vista_I ntegration _Log]
  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: Inse rt vista i ntegration  log.
  13   -- ======= ========== ========== ========== ========
  14   CREATE PRO CEDURE [db o].[usp_In sert_Vista _Integrati on_Log]
  15           @I EN 
VARCHAR(50 ),
  16           @V ISTA 
VARCHAR(50 ),
  17           @V ISTA_FILE  CHAR(2)
  18   AS
  19   SET NOCOUN T ON
  20   BEGIN
  21  
  22   INSERT INT O [dbo].[V ISTA_INTEG RATION_LOG ]
  23               ([IEN]
  24               ,[VISTA]
  25               ,[VISTA_F ILE])
  26        VALUE S
  27               (@IEN,
  28                @VISTA,
  29                @VISTA_F ILE)         
  30   END
  31  
  32  
  33  
  34   GO