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

135.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_AfterInsert.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_AfterInsert.sql Mon Mar 26 14:10:20 2018 UTC

135.2 Comparison summary

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

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

135.4 Active regular expressions

No regular expressions were active.

135.5 Comparison detail

  1   USE [BMS]
  2   GO
  3   /****** Ob ject:  Tri gger [dbo] .[utg_Dive rsion_Afte rInsert]     Script D ate: 8/18/ 2016 2:51: 25 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 Insert] 
  9      ON  [db o].[DIVERS ION] 
  10      AFTER I NSERT
  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), @S QL N DNS    AR(MAX)
  18       
  19       SELECT  @HISTORY_ VALUE=PARA METER_VALU E
  20       FROM d bo.Options
  21       WHERE  PARAMETER  = 'HISTORY ';
  22      
  23       IF (UP PER(@HISTO RY_VALUE)  = 'Y')
  24         BEGI N
  25         INSE RT INTO BM S_HISTORY. [dbo].[DIV ERSION_H]
  26                                                                         (ID, F ACILITY_UI D, VISTA_S ITE_UID, A CTIVE, STA RT_DATE, E ND_DATE, L OCATION_ID , DOMAIN_I D, COMMENT S, ENTERED _BY, ENTER ED_DATE, L AST_EDIT_B Y, TRANSAC TION_TYPE_ CODE, DATE , CREATED_ BY, WARD_G ROUP, TREA TING_SPECI ALTY) 
  27                    SELE CT ID, FAC ILITY_UID,  VISTA_SIT E_UID, ACT IVE, START _DATE, END _DATE, LOC ATION_ID,  DOMAIN_ID,  COMMENTS,  ENTERED_B Y, ENTERED _DATE, LAS T_EDIT_BY,  'I', GETU TCDATE(),  dbo.ufn_Ge t_BMS_User _Name(), W ARD_GROUP,  TREATING_ SPECIALTY
  28                                                        F ROM insert ed;
  29                                                        
  30              END            
  31   END