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

244.1 Files compared

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

244.2 Comparison summary

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

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

244.4 Active regular expressions

No regular expressions were active.

244.5 Comparison detail

  1   --DROP PRO CEDURE App .NVCC_usp_ GetDivisio n
  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 sion]
  13           @s ta6a varch ar(50)
  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                                : REFDOC
  23   --Author                  : Jon  Duckart 
  24   --Object/S P Name                  : NVCC_u sp_GetDivi sion
  25   --SERVER                                    
D NS . U R        
  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 5-2016
  35   --Last Cha nged           : 03-1 5-2017
  36   --Last Cha nged By                 : Brian  Diggs - No rthwest In novation C enter (NWI C)
  37   --Reason F or Change               : Change d paramete r type to  varchar(50 ) to match  the
  38   --                          type  of sta6a  in the vie w.
  39   --
  40   --Last Cha nged           : 08-2 5-2016
  41   --Last Cha nged By                 : Jon Du ckart - No rthwest In novation C enter (NWI C)
  42   --Reason F or Change               : 
  43   --
  44   --Purpose                 : Retr ieve a use r's Sta6a  for VIA ca lls
  45   --======== ========== ========== ========== ========== ========== ========== ========== ===
  46   --Uses: CD WWork.Dim. Division
  47  
  48   BEGIN
  49           --  SET NOCOU NT ON adde d to preve nt extra r esult sets  from
  50           --  interferi ng with SE LECT state ments.
  51           SE T NOCOUNT  ON;
  52           SE LECT 
  53                    [Div isionSid]
  54                    ,[St a3n]
  55                    ,[Di visionName ]  
  56                    ,[St a6a]
  57           FR OM [CDWWor k].[Dim].[ Division]
  58           WH ERE Sta6a= @sta6a
  59         
  60   END;
  61   GO
  62  
  63   EXEC [dbo] .[sp_SignA ppObject]  'NVCC_usp_ GetDivisio n'
  64   GO
  65  
  66