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

19.1 Files compared

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

19.2 Comparison summary

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

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

19.4 Active regular expressions

No regular expressions were active.

19.5 Comparison detail

  1   USE [msdb]
  2   GO
  3  
  4   /****** Ob ject:  Job  [CC_REFDO C Update P roduction  Log]    Sc ript Date:  7/21/2017  6:31:06 P M ******/
  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  6:31:06 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 Update P roduction  Log', 
  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  Production  Log]    S cript Date : 7/21/201 7 6:31:06  PM ******/
  29   EXEC @Retu rnCode = m sdb.dbo.sp _add_jobst ep @job_id =@jobId, @ step_name= N'Update P roduction  Log', 
  30                    @ste p_id=1, 
  31                    @cmd exec_succe ss_code=0,  
  32                    @on_ success_ac tion=1, 
  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 Update  Production  Log.dtsx\ "" /CHECKP OINTING OF F /REPORTI NG 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   EXEC @Retu rnCode = m sdb.dbo.sp _update_jo b @job_id  = @jobId,  @start_ste p_id = 1
  45   IF (@@ERRO R <> 0 OR  @ReturnCod e <> 0) GO TO QuitWit hRollback
  46   EXEC @Retu rnCode = m sdb.dbo.sp _add_jobsc hedule @jo b_id=@jobI d, @name=N 'Collector Schedule_E very_10min ', 
  47                    @ena bled=1, 
  48                    @fre q_type=4, 
  49                    @fre q_interval =1, 
  50                    @fre q_subday_t ype=4, 
  51                    @fre q_subday_i nterval=10
  52                    @fre q_relative _interval= 0, 
  53                    @fre q_recurren ce_factor= 0, 
  54                    @act ive_start_ date=20140 220, 
  55                    @act ive_end_da te=9999123 1, 
  56                    @act ive_start_ time=0, 
  57                    @act ive_end_ti me=235959,  
  58                    @sch edule_uid= N'4b24f341 -0d27-45ea -8596-eb66 42df37b1'
  59   IF (@@ERRO R <> 0 OR  @ReturnCod e <> 0) GO TO QuitWit hRollback
  60   EXEC @Retu rnCode = m sdb.dbo.sp _add_jobse rver @job_ id = @jobI d, @server _name = N' (local)'
  61   IF (@@ERRO R <> 0 OR  @ReturnCod e <> 0) GO TO QuitWit hRollback
  62   COMMIT TRA NSACTION
  63   GOTO EndSa ve
  64   QuitWithRo llback:
  65       IF (@@ TRANCOUNT  > 0) ROLLB ACK TRANSA CTION
  66   EndSave:
  67  
  68   GO
  69  
  70