144. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 8/29/2017 11:27:39 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.

144.1 Files compared

# Location File Last Modified
1 REFDOC-devel-20170714.zip\NVCC\SQL NVCC_vGetNVAMeds.sql Fri Jul 14 21:27:02 2017 UTC
2 REFDOC-devel-20170714.zip\NVCC\SQL NVCC_vGetNVAMeds.sql Mon Aug 28 21:05:27 2017 UTC

144.2 Comparison summary

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

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

144.4 Active regular expressions

No regular expressions were active.

144.5 Comparison detail

  1   --USE [NWI C_PanelMgm t]
  2   --GO
  3  
  4   SET ANSI_N ULLS ON
  5   GO
  6  
  7   SET QUOTED _IDENTIFIE R ON
  8   GO
  9  
  10  
  11   ALTER VIEW  [App].[NV CC_vGetNVA Meds]
  12  
  13   AS
  14   --======== ========== ========== ========== ========== ========== ========== ========== ===
  15   --Requesto r                                : Non Va C oordinated  Care Proj ect
  16   --Author                  : Jerr y Kohler ( Original s cript by D r. Charles  Demosthen es)
  17   --Object/S P Name                  : NVCC_v GetNVAMeds
  18   --SERVER                                    : DNS   DN S.URL         
  19   --Data Bas e                                : NWIC_Pan elMgmt
  20   --Schema                                    : app
  21   --Report                                    : N/A
  22   --Folder                                    : N/A
  23   --Report L oc             : N/A
  24   --Job                     : None
  25   --Job Loc                 : None
  26   --Note                    : 
  27   --Date Cre ated           : 02-0 5-2016
  28   --Last Cha nged           : 
  29   --Last Cha nged By                 : 
  30   --Reason F or Change               : 
  31   --
  32   --Purpose                 : Retr ieve a pat ient's med ications n ot issued  by VA for
  33   --                          incl usion into  NVCC docu mentation
  34   --======== ========== ========== ========== ========== ========== ========== ========== ===
  35  
  36   SELECT d.L ocalDrugNa meWithDose
  37         ,n.M edicationR oute
  38         ,n.S chedule
  39   FROM CDWWo rk.NonVAMe d.NonVaMed  n
  40   INNER JOIN  CDWWork.D im.LocalDr ug d ON n. LocalDrugS ID = d.Loc alDrugSID;
  41  
  42  
  43   GO
  44  
  45