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

156.1 Files compared

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

156.2 Comparison summary

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

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

156.4 Active regular expressions

No regular expressions were active.

156.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                  :  DNS   DNS. URL         
  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';