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

157.1 Files compared

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

157.2 Comparison summary

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

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

157.4 Active regular expressions

No regular expressions were active.

157.5 Comparison detail

  1   --DROP PRO CEDURE App .NVCC_usp_ Production AccessLogU niqueUsers
  2  
  3   CREATE PRO CEDURE App .NVCC_usp_ Production AccessLogU niqueUsers
  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 Users
  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 use rs from th e access l og
  25   --======== ========== ========== ========== ========== ========== ========== ========== ====
  26   --Uses: NW IC_PanelMg mt.App.vNV CC_Product ionAccessL og
  27   --Uses: NW IC_PanelMg mt.App.NVC C_Users
  28   --Uses: CD WWork.Pati ent.Patien t
  29   --Uses: CD WWork.SSta ff.SStaff
  30   BEGIN
  31           SE LECT DISTI NCT
  32                    al.u serID,
  33                    s.St affName,
  34                    p.St a3n
  35           FR OM
  36                    NWIC _PanelMgmt .App.vNVCC _Productio nAccessLog  al
  37                    INNE R JOIN CDW Work.Patie nt.Patient  p
  38                             ON al. PatientSID  = p.Patie ntSID
  39                    LEFT  JOIN NWIC _PanelMgmt .App.NVCC_ Users u
  40                             ON al. UserID = u .DomainPlu sNetworkUs erName
  41                    LEFT  JOIN CDWW ork.SStaff .SStaff s
  42                             ON u.U serIEN = s .StaffIEN  and u.Sta3 n = s.Sta3 n
  43           OR DER BY s.S taffName
  44   END
  45   GO
  46  
  47   exec sp_Si gnAppObjec t 'NVCC_us p_Producti onAccessLo gUniqueUse rs';