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

94.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_Filter_BP_Last_Run.sql Wed Oct 23 12:51:09 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_Filter_BP_Last_Run.sql Thu Oct 26 15:41:03 2017 UTC

94.2 Comparison summary

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

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

94.4 Active regular expressions

No regular expressions were active.

94.5 Comparison detail

  1   /****** Ob ject:  Sto redProcedu re [dbo].[ usp_Filter _BP_Last_R un]    Scr ipt Date:  03/22/2012  11:04:49  ******/
  2   IF  EXISTS  (SELECT *  FROM sys. objects WH ERE object _id = OBJE CT_ID(N'[d bo].[usp_F ilter_BP_L ast_Run]')  AND type  in (N'P',  N'PC'))
  3   DROP PROCE DURE [dbo] .[usp_Filt er_BP_Last _Run]
  4   GO
  5   SET ANSI_N ULLS ON
  6   GO
  7   SET QUOTED _IDENTIFIE R ON
  8   GO
  9   --
  10   -- ======= ========== ========== ========== ========
  11   -- Author                  :        PII
  12   -- Created  date :        08/22/ 2013
  13   -- Descrip tion  :        Filter s last BP  RUN
  14   -- ======= ========== ========== ========== ========
  15  
  16   CREATE PRO CEDURE [db o].[usp_Fi lter_BP_La st_Run] 
  17           @V ISTA_ID NV ARCHAR(50) ,
  18           @R ETRIEVAL_M ETHOD tiny int,
  19           @R ETRIEVED_D ATA_TYPE i nt,
  20           @S TATUS tiny int = null
  21   AS
  22   BEGIN
  23           SE T NOCOUNT  ON;
  24  
  25           DE CLARE @LOC AL_RETRIEV AL_METHOD  NVARCHAR(3 ), @LOCAL_ RETRIEVED_ DATA_TYPE  NVARCHAR(1 0), @LOCAL _STATUS NV ARCHAR(3)
  26           
  27           SE T @LOCAL_R ETRIEVAL_M ETHOD  = C AST(@RETRI EVAL_METHO D AS NVARC HAR(3))
  28           SE T @LOCAL_R ETRIEVED_D ATA_TYPE =  CAST(@RET RIEVED_DAT A_TYPE AS  NVARCHAR(1 0))
  29           SE T @LOCAL_S TATUS = CA ST(@STATUS  AS NVARCH AR(3))
  30           
  31           SE LECT MAX(E ND_DATE) A S BPDate
  32           FR OM JOB_AUD IT JA
  33           WH ERE VISTA_ ID = @VIST A_ID AND [ STATUS] IN  (1,8)
  34                             
  35   END
  36   GO