269. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 6/22/2018 9:28:21 AM 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.

269.1 Files compared

# Location File Last Modified
1 REFDOC_2.3_06072018.zip\REFDOC 2.3_06072018\NVCC\SQL Table NVCC_AccessLog.sql Thu Jun 7 16:53:38 2018 UTC
2 REFDOC_2.3_06072018.zip\REFDOC 2.3_06072018\NVCC\SQL Table NVCC_AccessLog.sql Fri Jun 22 12:51:29 2018 UTC

269.2 Comparison summary

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

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

269.4 Active regular expressions

No regular expressions were active.

269.5 Comparison detail

  1   USE [NWIC_ PanelMgmt]
  2   GO
  3  
  4   --======== ========== ========== ========== ========== ========== ========== ========== ====
  5   --Requesto r              : Non  Va Coordin ated Care  Project
  6   --Author                  : Jerr y Kohler
  7   --Object/S P Name         : NVCC _AccessLog
  8   --Server                  
D NS . U R        
  9   --Data Bas e              : NWIC _PanelMgmt
  10   --Schema                  : App
  11   --Report                  : N/A
  12   --Folder                  : N/A
  13   --Report L oc             : N/A
  14   --Job                     : None
  15   --Job Loc                 : None
  16   --Note                    : 
  17   --Date Cre ated           : 04-0 4-2016
  18   --
  19   --Last Cha nged           : 03-2 8-2017
  20   --Last Cha nged By                 : Brian  Diggs
  21   --Reason F or Change               : Rolled  ALTER TAB LE stateme nt into th e CREATE T ABLE.
  22   --                          Adde d indexes  based on r ecommendat ions of Je rry Kohler  derived
  23   --                          from  suggestio ns from CD W (Andrew  Kelly)
  24   --                          Refo rmatted wh itespace
  25   --
  26   --Last Cha nged           : 04-0 5-2016
  27   --Last Cha nged By                 : Brian  Diggs
  28   --Reason F or Change               : Make A ccessLogID  autopopul ate/increm ent
  29   --
  30   --Purpose                 : To l og usage o f the NVCC  (SITCoM)  applicatio n.
  31   --======== ========== ========== ========== ========== ========== ========== ========== ====
  32  
  33   IF (SELECT  OBJECT_ID ('App.NVCC _AccessLog ')) IS NOT  NULL
  34   DROP TABLE  App.NVCC_ AccessLog
  35  
  36   CREATE TAB LE App.NVC C_AccessLo g (
  37           Ac cessLogID         int  not null  identity(1 ,1) primar y key,
  38           Ho stName            var char(80),
  39           Us erID              var char(50),
  40           Ac cessDateTi me     dat eTime,
  41           [A ction]            var char(255),
  42           Pa tientSID          int ,
  43           El apsedTime         flo at NULL,
  44           Da tabaseServ erName var char(50)
  45   ) ON [DefF G] WITH (D ATA_COMPRE SSION = PA GE)
  46  
  47   CREATE IND EX NVCC_Ac cessLog_Ho stName_Use rID
  48   ON APP.NVC C_AccessLo g(HostName , UserID)  INCLUDE(Ac cessDateTi me)
  49   WITH(SORT_ IN_TEMPDB= ON, DATA_C OMPRESSION =PAGE)
  50  
  51   CREATE IND EX NVCC_Ac cessLog_Ho stName_Use rID_Action
  52   ON APP.NVC C_AccessLo g(HostName , UserID,  Action)
  53   WITH(SORT_ IN_TEMPDB= ON, DATA_C OMPRESSION =PAGE)