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

134.1 Files compared

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

134.2 Comparison summary

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

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

134.4 Active regular expressions

No regular expressions were active.

134.5 Comparison detail

  1   USE [NWIC_ PanelMgmt]
  2   GO
  3  
  4   /****** Ob ject:  Sto redProcedu re [App].[ NVCC_usp_G etStations ]    Scrip t Date: 1/ 29/2016 7: 55:14 PM * *****/
  5   SET ANSI_N ULLS ON
  6   GO
  7  
  8   SET QUOTED _IDENTIFIE R ON
  9   GO
  10  
  11  
  12  
  13   ALTER PROC EDURE [App ].[NVCC_us p_GetStati ons]
  14  
  15   AS
  16   --======== ========== ========== ========== ========== ========== ========== ========== ===
  17   --Requesto r                                : Non Va C oordinated  Care Proj ect
  18   --Author                  : Jerr y Kohler ( Original s cript by D r. Charles  Demosthen es)
  19   --Object/S P Name                  : NVCC_u sp_GetStat ions
  20   --SERVER                                    : DNS   DN S.URL         
  21   --Data Bas e                                : NWIC_Pan elMgmt
  22   --Schema                                    : app
  23   --Report                                    : N/A
  24   --Folder                                    : N/A
  25   --Report L oc             : N/A
  26   --Job                     : None
  27   --Job Loc                 : None
  28   --Note                    : 
  29   --Date Cre ated           : 01-1 2-2016
  30   --Last Cha nged           : 
  31   --Last Cha nged By                 : 
  32   --
  33   --Purpose                 : Retr ieve all s tored data  for all s tations in  the VNCC
  34   --                          appl ication.
  35   --======== ========== ========== ========== ========== ========== ========== ========== ===
  36   BEGIN
  37           SE T NOCOUNT  ON;
  38           SE LECT * fro m app.NVCC _Stations
  39       Order  by Sta3n;
  40   END
  41  
  42  
  43  
  44   GO
  45  
  46