282. EPMO Open Source Coordination Office Redaction File Detail Report

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

282.1 Files compared

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

282.2 Comparison summary

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

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

282.4 Active regular expressions

No regular expressions were active.

282.5 Comparison detail

  1   USE NWIC_P anelMgmt
  2   GO
  3  
  4   SET ANSI_N ULLS ON
  5   GO
  6  
  7   SET QUOTED _IDENTIFIE R ON
  8   GO
  9  
  10  
  11   CREATE VIE W [App].[v Patient]
  12   --======== ========== ========== ========== ========== ========== ========== ========== ===
  13   --Requesto r                       : Non Va  Coordinat ed Care Pr oject
  14   --Author                  : Jerr y Kohler
  15   --Object/S P Name             :  vPatient
  16   --SERVER                           
D NS . U R        
  17   --Data Bas e                       : NWIC_P anelMgmt
  18   --Schema                           : app
  19   --Report                           : N/A
  20   --Folder                           : N/A
  21   --Report L oc             : N/A
  22   --Job                     : None
  23   --Job Loc                 : None
  24   --Note                    : 
  25   --Date Cre ated           : 02-1 8-2016 
  26   --
  27   --Last Cha nged           : 02-1 8-2016  
  28   --Last Cha nged By                 : Jerry  Kohler - N orthwest I nnovation  Center (NW IC)
  29   --Reason F or Change               : Reques t to also  provide th e name of  the statio n.
  30   --
  31   --Purpose                 : Retr ieve a pat ient's rec ent appoin tments for  inclusion
  32   --                          into  NVCC docu mentation
  33   --======== ========== ========== ========== ========== ========== ========== ========== ===
  34   AS
  35      SELECT  Cast(patie ntsid as v archar) as  strPatien tSID
  36            , Sta3n
  37            , App.udf_St ationName  (Sta3n) AS  StationNa me
  38            , PatientNam e
  39            , PatientLas tName
  40            , PatientFir stName
  41            , PatientSSN
  42            , StreetAddr ess1
  43            , StreetAddr ess2
  44            , StreetAddr ess3
  45            , City
  46            , Zip
  47            , Zip4
  48            , PostalCode
  49            , Province
  50            , Country
  51            , PhoneResid ence
  52            , PhoneWork
  53            , PhoneCellu lar
  54            , DateOfDeat h
  55            , BadAddress Indicator
  56            , TemporaryA ddressActi veFlag
  57            , Gender
  58            , Age
  59            , [State]
  60            , Deceased
  61            , Eligibilit y
  62            , DateOfBirt h
  63            , Ineligible Date
  64            , Eligibilit yStatus
  65            , Eligibilit yVerificat ionSource
  66      FROM  C DWWork.SPa tient.SPat ient;
  67  
  68   GO