136. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 3/27/2018 2:07:03 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.

136.1 Files compared

# Location File Last Modified
1 BMS_v2.4_Code.zip\BMS_v2.4_Code\Database\BMSv2Updates\2.2.11.2 utg_Diversion_AfterUpdate.sql Wed Mar 21 14:50:06 2018 UTC
2 BMS_v2.4_Code.zip\BMS_v2.4_Code\Database\BMSv2Updates\2.2.11.2 utg_Diversion_AfterUpdate.sql Mon Mar 26 14:10:10 2018 UTC

136.2 Comparison summary

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

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

136.4 Active regular expressions

No regular expressions were active.

136.5 Comparison detail

  1   USE [BMS]
  2   GO
  3   /****** Ob ject:  Tri gger [dbo] .[utg_Dive rsion_Afte rUpdate]     Script D ate: 8/18/ 2016 2:51: 47 PM **** **/
  4   SET ANSI_N ULLS ON
  5   GO
  6   SET QUOTED _IDENTIFIE R OFF
  7   GO
  8   ALTER TRIG GER [dbo]. [utg_Diver sion_After Update] 
  9      ON  [db o].[DIVERS ION] 
  10      AFTER U PDATE
  11   AS 
  12   BEGIN
  13           --  SET NOCOU NT ON adde d to preve nt extra r esult sets  from
  14           --  interferi ng with SE LECT state ments.
  15           SE T NOCOUNT  ON;
  16           
  17           DE CLARE @HIS TORY_VALUE  N DNS    AR(50)
  18       
  19       SELECT  @HISTORY_ VALUE=PARA METER_VALU E
  20       FROM d bo.Options
  21       WHERE  PARAMETER  = 'HISTORY ';
  22  
  23           IF  (UPPER(@H ISTORY_VAL UE) = 'Y')
  24            I NSERT INTO  BMS_HISTO RY.[dbo].[ DIVERSION_ H]
  25                                 (I D, FACILIT Y_UID, VIS TA_SITE_UI D, ACTIVE,  START_DAT E, END_DAT E, LOCATIO N_ID, DOMA IN_ID, COM MENTS, ENT ERED_BY, E NTERED_DAT E, LAST_ED IT_BY, TRA NSACTION_T YPE_CODE,  DATE, CREA TED_BY, WA RD_GROUP,  TREATING_S PECIALTY)
  26                             SELECT  ID, FACIL ITY_UID, V ISTA_SITE_ UID, ACTIV E, START_D ATE, END_D ATE, LOCAT ION_ID, DO MAIN_ID, C OMMENTS, E NTERED_BY,  ENTERED_D ATE, LAST_ EDIT_BY, ' U', GETUTC DATE(), db o.ufn_Get_ BMS_User_N ame(), WAR D_GROUP, T REATING_SP ECIALTY
  27                             FROM i nserted;
  28            
  29   END