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

260.1 Files compared

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

260.2 Comparison summary

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

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

260.4 Active regular expressions

No regular expressions were active.

260.5 Comparison detail

  1   --DROP PRO CEDURE App .NVCC_usp_ Production AccessLogU niqueSta3n
  2  
  3   CREATE PRO CEDURE App .NVCC_usp_ Production AccessLogU niqueSta3n
  4   AS
  5   --======== ========== ========== ========== ========== ========== ========== ========== ====
  6   --Requesto r              : Non  Va Coordin ated Care  Project
  7   --Author                  : Bria n Diggs
  8   --Object/S P Name         : NVCC _usp_Produ ctionAcces sLogUnique Sta3n
  9   --Server                  
D NS . U R        
  10   --Data Bas e              : NWIC _PanelMgmt
  11   --Schema                  : app
  12   --Report                  : N/A
  13   --Folder                  : N/A
  14   --Report L oc             : N/A
  15   --Job                     : None
  16   --Job Loc                 : None
  17   --Note                    : 
  18   --Date Cre ated           : 05-2 7-2016
  19   --
  20   --Last Cha nged           : 
  21   --Last Cha nged By                 : 
  22   --Reason F or Change               : 
  23   --
  24   --Purpose                 : Get  unique sta tions from  the acces s log
  25   --======== ========== ========== ========== ========== ========== ========== ========== ====
  26   --Uses: NW IC_PanelMg mt.App.vNV CC_Product ionAccessL og
  27   --Uses: CD WWork.Pati ent.Patien t
  28   BEGIN
  29           SE LECT DISTI NCT
  30                    p.St a3n,
  31                    App. udf_Statio nName(p.St a3n) AS St ation
  32           FR OM
  33                    NWIC _PanelMgmt .App.vNVCC _Productio nAccessLog  al
  34                    INNE R JOIN CDW Work.Patie nt.Patient  p
  35                             ON al. PatientSID  = p.Patie ntSID
  36           OR DER BY Sta tion
  37   END
  38   GO
  39  
  40   exec sp_Si gnAppObjec t 'NVCC_us p_Producti onAccessLo gUniqueSta 3n';