166. EPMO Open Source Coordination Office Redaction File Detail Report

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

166.1 Files compared

# Location File Last Modified
1 REFDOC-v2.1.0.zip\NVCC\SQL Table NVCC_Announcement.sql Thu Oct 19 17:37:26 2017 UTC
2 REFDOC-v2.1.0.zip\NVCC\SQL Table NVCC_Announcement.sql Wed Nov 8 20:54:17 2017 UTC

166.2 Comparison summary

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

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

166.4 Active regular expressions

No regular expressions were active.

166.5 Comparison detail

  1   USE [NWIC_ PanelMgmt]
  2   GO
  3  
  4   --IF (SELE CT OBJECT_ ID('App.NV CC_Announc ement')) I S NOT NULL  DROP TABL E App.NVCC _Announcem ent
  5  
  6   --======== ========== ========== ========== ========== ========== ========== ========== ====
  7   --Requesto r              : Non  Va Coordin ated Care  Project
  8   --Author                  : Bria n Diggs
  9   --Object/S P Name         : NVCC _Announcem ent
  10   --Server                  :  DNS   DNS. URL         
  11   --Data Bas e              : NWIC _PanelMgmt
  12   --Schema                  : App
  13   --Report                  : N/A
  14   --Folder                  : N/A
  15   --Report L oc             : N/A
  16   --Job                     : None
  17   --Job Loc                 : None
  18   --Note                    : 
  19   --Date Cre ated           : 06-0 6-2016
  20   --
  21   --
  22   --Last Cha nged           :
  23   --Last Cha nged By                 :
  24   --Reason F or Change               :
  25   --
  26   --Purpose                 : Fact  table for  announcem ents
  27   --======== ========== ========== ========== ========== ========== ========== ========== ====
  28  
  29   CREATE TAB LE App.NVC C_Announce ment (
  30           An nouncement ID int NOT  NULL iden tity(1,1)  PRIMARY KE Y,
  31           An nouncement TypeID int  NOT NULL,
  32           Cr eator varc har(50) NO T NULL,
  33           --  datetime  of creatio n, in UTC  time
  34           Cr eationDT d atetime2 N OT NULL CO NSTRAINT D F_Announce ment_Creat ionDT DEFA ULT SYSUTC DATETIME() ,
  35           --  datetime  of expirat ion, in UT C time
  36           Ex pirationDT  datetime2 ,
  37           Te xt nvarcha r(4000)
  38   ) ON [DefF G] with (D ATA_COMPRE SSION = PA GE)
  39  
  40   CREATE IND EX Announc ementTypeI D_Announce ment
  41   ON App.NVC C_Announce ment (Anno uncementTy peID)
  42   ON [DefFG]
  43  
  44   CREATE IND EX Exiprat ionDT_Anno uncement
  45   ON App.NVC C_Announce ment (Expi rationDT)
  46   ON [DefFG]