16. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 11/9/2017 10:44:37 AM Eastern Standard 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.

16.1 Files compared

# Location File Last Modified
1 REFDOC-v2.1.0.zip\NVCC\ETL CC_REFDOC Post CDW Job.sql Thu Oct 19 17:36:40 2017 UTC
2 REFDOC-v2.1.0.zip\NVCC\ETL CC_REFDOC Post CDW Job.sql Tue Nov 7 22:12:31 2017 UTC

16.2 Comparison summary

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

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

16.4 Active regular expressions

No regular expressions were active.

16.5 Comparison detail

  1   USE [msdb]
  2   GO
  3  
  4   /****** Ob ject:  Job  [CC_REFDO C Post CDW ]    Scrip t Date: 7/ 21/2017 4: 11:52 PM * *****/
  5   BEGIN TRAN SACTION
  6   DECLARE @R eturnCode  INT
  7   SELECT @Re turnCode =  0
  8   /****** Ob ject:  Job Category [ [Uncategor ized (Loca l)]]    Sc ript Date:  7/21/2017  4:11:53 P M ******/
  9   IF NOT EXI STS (SELEC T name FRO M msdb.dbo .syscatego ries WHERE  name=N'[U ncategoriz ed (Local) ]' AND cat egory_clas s=1)
  10   BEGIN
  11   EXEC @Retu rnCode = m sdb.dbo.sp _add_categ ory @class =N'JOB', @ type=N'LOC AL', @name =N'[Uncate gorized (L ocal)]'
  12   IF (@@ERRO R <> 0 OR  @ReturnCod e <> 0) GO TO QuitWit hRollback
  13  
  14   END
  15  
  16   DECLARE @j obId BINAR Y(16)
  17   EXEC @Retu rnCode =   msdb.dbo.s p_add_job  @job_name= N'CC_REFDO C Post CDW ', 
  18                    @ena bled=1, 
  19                    @not ify_level_ eventlog=0
  20                    @not ify_level_ email=0, 
  21                    @not ify_level_ netsend=0,  
  22                    @not ify_level_ page=0, 
  23                    @del ete_level= 0, 
  24                    @des cription=N 'No descri ption avai lable.', 
  25                    @cat egory_name =N'[Uncate gorized (L ocal)]', 
  26                     @owner_log in_name=N' DN S         \CC_REFDOC _ETL', @jo b_id = @jo bId OUTPUT
  27   IF (@@ERRO R <> 0 OR  @ReturnCod e <> 0) GO TO QuitWit hRollback
  28   /****** Ob ject:  Ste p [Update  AllCDWPati ents]    S cript Date : 7/21/201 7 4:11:54  PM ******/
  29   EXEC @Retu rnCode = m sdb.dbo.sp _add_jobst ep @job_id =@jobId, @ step_name= N'Update A llCDWPatie nts', 
  30                    @ste p_id=1, 
  31                    @cmd exec_succe ss_code=0,  
  32                    @on_ success_ac tion=3, 
  33                    @on_ success_st ep_id=0, 
  34                    @on_ fail_actio n=2, 
  35                    @on_ fail_step_ id=0, 
  36                    @ret ry_attempt s=0, 
  37                    @ret ry_interva l=0, 
  38                    @os_ run_priori ty=0, @sub system=N'S SIS', 
  39                    @com mand=N'/FI LE "\"D:\E TLDeployme nt\CC_REFD OC\CC_REFD OC Rebuild  AllCDWPat ients.dtsx \"" /CHECK POINTING O FF /REPORT ING E', 
  40                    @dat abase_name =N'master'
  41                    @fla gs=0, 
  42                    @pro xy_name=N' CC_REFDOC_ ETL'
  43   IF (@@ERRO R <> 0 OR  @ReturnCod e <> 0) GO TO QuitWit hRollback
  44   /****** Ob ject:  Ste p [Update  Labs]    S cript Date : 7/21/201 7 4:11:54  PM ******/
  45   EXEC @Retu rnCode = m sdb.dbo.sp _add_jobst ep @job_id =@jobId, @ step_name= N'Update L abs', 
  46                    @ste p_id=2, 
  47                    @cmd exec_succe ss_code=0,  
  48                    @on_ success_ac tion=1, 
  49                    @on_ success_st ep_id=0, 
  50                    @on_ fail_actio n=2, 
  51                    @on_ fail_step_ id=0, 
  52                    @ret ry_attempt s=0, 
  53                    @ret ry_interva l=0, 
  54                    @os_ run_priori ty=0, @sub system=N'S SIS', 
  55                    @com mand=N'/FI LE "\"D:\E TLDeployme nt\CC_REFD OC\CC_REFD OC Update  Lab Index. dtsx\"" /C HECKPOINTI NG OFF /RE PORTING E'
  56                    @dat abase_name =N'master'
  57                    @fla gs=0, 
  58                    @pro xy_name=N' CC_REFDOC_ ETL'
  59   IF (@@ERRO R <> 0 OR  @ReturnCod e <> 0) GO TO QuitWit hRollback
  60   EXEC @Retu rnCode = m sdb.dbo.sp _update_jo b @job_id  = @jobId,  @start_ste p_id = 1
  61   IF (@@ERRO R <> 0 OR  @ReturnCod e <> 0) GO TO QuitWit hRollback
  62   EXEC @Retu rnCode = m sdb.dbo.sp _add_jobse rver @job_ id = @jobI d, @server _name = N' (local)'
  63   IF (@@ERRO R <> 0 OR  @ReturnCod e <> 0) GO TO QuitWit hRollback
  64   COMMIT TRA NSACTION
  65   GOTO EndSa ve
  66   QuitWithRo llback:
  67       IF (@@ TRANCOUNT  > 0) ROLLB ACK TRANSA CTION
  68   EndSave:
  69  
  70   GO
  71  
  72