248. EPMO Open Source Coordination Office Redaction File Detail Report

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

248.1 Files compared

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

248.2 Comparison summary

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

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

248.4 Active regular expressions

No regular expressions were active.

248.5 Comparison detail

  1   USE [NWIC_ PanelMgmt]
  2   GO
  3  
  4   SET ANSI_N ULLS ON
  5   GO
  6  
  7   SET QUOTED _IDENTIFIE R ON
  8   GO
  9  
  10   IF (SELECT  OBJECT_ID ('App.NVCC _usp_GetNe xtOfKin'))  IS NOT NU LL
  11   DROP PROCE DURE App.N VCC_usp_Ge tNextOfKin
  12   GO
  13  
  14   CREATE PRO CEDURE [Ap p].[NVCC_u sp_GetNext OfKin]
  15           @s id int   - -PatientSi d
  16  
  17   -- NOTICE:
  18   -- Do not  edit the s tored proc edure live  on the se rver. Code  to genera te
  19   -- the pro cedures is  stored in  the proje ct reposit ory. Any c hanges mad e
  20   -- that ar e not reco rded in th e reposito ry will be  overwritt en.
  21  
  22   AS
  23   --======== ========== ========== ========== ========== ========== ========== ========== ====
  24   --Requesto r              : Non  Va Coordin ated Care  Project
  25   --Author                  : Jon  Duckart
  26   --Object/S P Name         : [NVC C_usp_GetN extOfKin]
  27   --Server                  
D NS . U R        
  28   --Data Bas e              : NWIC _PanelMgmt
  29   --Schema                  : app
  30   --Report                  : N/A
  31   --Folder                  : N/A
  32   --Report L oc             : N/A
  33   --Job                     : None
  34   --Job Loc                 : None
  35   --Note                    : 
  36   --Date Cre ated           : 06-0 7-2016
  37   --
  38   --Purpose                 : To r etrieve a  single pat ient NOK r ecord for  the NVCC a pp by SID.
  39   --======== ========== ========== ========== ========== ========== ========== ========== ====
  40   BEGIN
  41           --  SET NOCOU NT ON adde d to preve nt extra r esult sets  from
  42           --  interferi ng with SE LECT state ments.
  43      SET NOC OUNT ON;
  44  
  45      SELECT   SPatientA ddressSID  as NextOfK indId
  46      , Patie ntSID
  47      , Sta3n  as Statio n
  48      , Addre ssType
  49      , NameO fContact
  50      , Stree tAddress1
  51      , Stree tAddress2
  52      , City
  53      , State
  54      , Zip
  55      , Phone
  56      , Phone Work
  57      FROM  C DWWork.SPa tient.SPat ientAddres s
  58      WHERE P atientSID=  @sid and  OrdinalNum ber=2;  -- OrdinalNum ber=2, Nex t Of Kin
  59   END;
  60   GO
  61  
  62   EXEC sp_Si gnAppObjec t 'NVCC_us p_GetNextO fKin';