71. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 1/31/2018 9:02:23 AM Central Standard 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.

71.1 Files compared

# Location File Last Modified
1 NVCC_2.2_01162018.zip\NVCC\SQL NVCC_usp_GetDivisions.sql Thu Oct 19 16:37:26 2017 UTC
2 NVCC_2.2_01162018.zip\NVCC\SQL NVCC_usp_GetDivisions.sql Wed Jan 31 13:36:09 2018 UTC

71.2 Comparison summary

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

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

71.4 Active regular expressions

No regular expressions were active.

71.5 Comparison detail

  1   --DROP PRO CEDURE App .NVCC_usp_ GetDivisio ns
  2  
  3   USE [NWIC_ PanelMgmt]
  4   GO
  5  
  6   SET ANSI_N ULLS ON
  7   GO
  8  
  9   SET QUOTED _IDENTIFIE R ON
  10   GO
  11  
  12   CREATE PRO CEDURE [Ap p].[NVCC_u sp_GetDivi sions]
  13           @s ta3n small int -- thi s is the s ta3n
  14  
  15   -- NOTICE:
  16   -- Do not  edit the s tored proc edure live  on the se rver. Code  to genera te
  17   -- the pro cedures is  stored in  the proje ct reposit ory. Any c hanges mad e
  18   -- that ar e not reco rded in th e reposito ry will be  overwritt en.
  19  
  20   AS
  21   --======== ========== ========== ========== ========== ========== ========== ========== ===
  22   --Requesto r                                : Non Va C oordinated  Care Proj ect
  23   --Author                  : Jon  Duckart 
  24   --Object/S P Name                  : NVCC_u sp_GetVAMe ds
  25   --SERVER                                    SERVER        
  26   --Data Bas e                                : NWIC_Pan elMgmt
  27   --Schema                                    : app
  28   --Report                                    : N/A
  29   --Folder                                    : N/A
  30   --Report L oc             : N/A
  31   --Job                     : None
  32   --Job Loc                 : None
  33   --Note                    : 
  34   --Date Cre ated           : 08-2 3-2016
  35   --Last Cha nged           : 08-2 3-2016
  36   --Last Cha nged By                 : Jon Du ckart - No rthwest In novation C enter (NWI C)
  37   --Reason F or Change               : 
  38   --
  39   --Purpose                 : Retr ieve a use r's Sta6a  for VIA ca lls
  40   --======== ========== ========== ========== ========== ========== ========== ========== ===
  41   --Uses: CD WWork.Dim. Division
  42  
  43   BEGIN
  44       -- SET  NOCOUNT O N added to  prevent e xtra resul t sets fro m
  45       -- int erfering w ith SELECT  statement s.
  46       SET NO COUNT ON;
  47           SE LECT 
  48                    [Div isionSid]
  49                    ,[St a3n]
  50                    ,[Di visionName ]  
  51                    ,[St a6a]
  52           FR OM [CDWWor k].[Dim].[ Division]
  53           WH ERE Sta3n= @sta3n
  54                    AND  DivisionNa me <> '*Un known at t his time*'
  55   END;
  56   GO
  57  
  58   EXEC [dbo] .[sp_SignA ppObject]  'NVCC_usp_ GetDivisio ns'
  59  
  60  
  61  
  62