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

254.1 Files compared

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

254.2 Comparison summary

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

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

254.4 Active regular expressions

No regular expressions were active.

254.5 Comparison detail

  1   USE [NWIC_ PanelMgmt]
  2   GO
  3  
  4   /****** Ob ject:  Sto redProcedu re [App].[ NVCC_usp_G etStation]     Script  Date: 1/2 9/2016 7:5 3:54 PM ** ****/
  5   SET ANSI_N ULLS ON
  6   GO
  7  
  8   SET QUOTED _IDENTIFIE R ON
  9   GO
  10  
  11  
  12  
  13   CREATE  PR OCEDURE [A pp].[NVCC_ usp_GetSta tion]
  14           @s tation int  --station  to get in formation  for
  15  
  16   AS
  17   --======== ========== ========== ========== ========== ========== ========== ========== ===
  18   --Requesto r                                : Non Va C oordinated  Care Proj ect
  19   --Author                  : Jerr y Kohler ( Original s cript by D r. Charles  Demosthen es)
  20   --Object/S P Name                  : NVCC_u sp_GetStat ions
  21   --SERVER                                    
D NS . U R        
  22   --Data Bas e                                : NWIC_Pan elMgmt
  23   --Schema                                    : app
  24   --Report                                    : N/A
  25   --Folder                                    : N/A
  26   --Report L oc             : N/A
  27   --Job                     : None
  28   --Job Loc                 : None
  29   --Note                    : 
  30   --Date Cre ated           : 01-1 2-2016
  31   --Last Cha nged           : 
  32   --Last Cha nged By                 : 
  33   --
  34   --Purpose                 : Retr ieve all s tored data  for a sin gle statio n in the N VCC
  35   --                          appl ication.
  36   --======== ========== ========== ========== ========== ========== ========== ========== ===
  37   BEGIN
  38           SE T NOCOUNT  ON;
  39           SE LECT * fro m app.NVCC _Stations  where Sta3 n=@station ;
  40   END
  41  
  42  
  43  
  44   GO
  45  
  46