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

278.1 Files compared

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

278.2 Comparison summary

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

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

278.4 Active regular expressions

No regular expressions were active.

278.5 Comparison detail

  1   USE [NWIC_ PanelMgmt]
  2   GO
  3  
  4   /****** Ob ject:  Vie w [App].[v Allergies]     Script  Date: 1/2 7/2016 2:4 4:07 PM ** ****/
  5   SET ANSI_N ULLS ON
  6   GO
  7  
  8   SET QUOTED _IDENTIFIE R ON
  9   GO
  10  
  11  
  12   CREATE VIE W [App].[v Allergies]  AS
  13   --======== ========== ========== ========== ========== ========== ========== ========== ===
  14   --Requesto r                       : Non Va  Coordinat ed Care Pr oject
  15   --Author                  : Jerr y Kohler
  16   --Object/S P Name             :  vAllergies
  17   --SERVER                           
D NS . U R        
  18   --Data Bas e                       : NWIC_P anelMgmt
  19   --Schema                           : app
  20   --Report                           : N/A
  21   --Folder                           : N/A
  22   --Report L oc             : N/A
  23   --Job                     : None
  24   --Job Loc                 : None
  25   --Note                    : 
  26   --Date Cre ated           : 01-1 2-2016
  27   --
  28   --Last Cha nged           : 02-1 8-2016  
  29   --Last Cha nged By                 : Jerry  Kohler - N orthwest I nnovation  Center (NW IC)
  30   --Reason F or Change               : Reques t to also  provide th e name of  the statio n.
  31   --
  32   --Last Cha nged           : 01-2 7-2016  
  33   --Last Cha nged By            :  Jerry Kohl er - North west Innov ation Cent er (NWIC)
  34   --Reason F or Change          :  This view  is created  from the  stored pro cedure
  35   --                          NVA. GetAllergi es in orde r to facil itate asyn chronous
  36   --                          proc essing by  the applic ation.  Th e applicat ion will
  37   --                          take  care of p assing the  patient S ID.
  38   --
  39   --Purpose                 : Retr ieve a pat ient's app ointments  for inclus ion into N VCC
  40   --                          docu mentation
  41   --======== ========== ========== ========== ========== ========== ========== ========== ===
  42   SELECT dis tinct a.St a3n
  43                   ,App. udf_Statio nName (a.S ta3n) AS S tationName
  44                   ,a.Al lergySID
  45                   ,a.Pa tientSID
  46                   ,a.Or iginationD ateTime
  47                   ,a.Ve rification DateTime
  48                   ,a.Al lergicReac tant as al lergy
  49    FROM CDWW ork.Allerg y.Allergy  a
  50   WHERE a.En teredInErr orFlag IS  NULL;
  51  
  52   GO