93. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 10/26/2017 10:43:14 PM 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.

93.1 Files compared

# Location File Last Modified
1 OSCIF_BMS_v2_iter 2_September_2017.zip\BMS_Cand\BMS_Build_C72898\BMS_Source-BuildC72898.zip\C72898\Source\Sources\Database\CreationScripts\BMS\4.Stored Procedures dbo.usp_Filter_Bed_Unavailable.sql Wed Oct 23 12:51:09 2013 UTC
2 OSCIF_BMS_v2_iter 2_September_2017.zip\BMS_Cand\BMS_Build_C72898\BMS_Source-BuildC72898.zip\C72898\Source\Sources\Database\CreationScripts\BMS\4.Stored Procedures dbo.usp_Filter_Bed_Unavailable.sql Thu Oct 26 15:40:48 2017 UTC

93.2 Comparison summary

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

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

93.4 Active regular expressions

No regular expressions were active.

93.5 Comparison detail

  1   IF  EXISTS  (SELECT *  FROM sys. objects WH ERE object _id = OBJE CT_ID(N'[d bo].[usp_F ilter_Bed_ Unavailabl e]') AND t ype in (N' P', N'PC') )
  2   DROP PROCE DURE [dbo] .[usp_Filt er_Bed_Una vailable]
  3   GO
  4   SET ANSI_N ULLS ON
  5   GO
  6   SET QUOTED _IDENTIFIE R ON
  7   GO
  8   --
  9  
  10  
  11   -- ======= ========== ========== ========== ========
  12   -- Author:                 PII
  13   -- Create  date: 07.0 9.2011
  14   -- Descrip tion: List  bed unava ilable by  vista code .
  15   -- ======= ========== ========== ========== ========
  16   CREATE PRO CEDURE [db o].[usp_Fi lter_Bed_U navailable
  17           @D OMAIN_ID N VARCHAR(50 ),
  18           @V ISTA_SITE_ UID UNIQUE IDENTIFIER
  19   AS
  20   BEGIN
  21   SET NOCOUN T ON
  22                    
  23           SE LECT
  24                    [A]. [CREATION_ DATE],
  25                    [BU] .[BED_UID]  AS [BED_U ID],
  26                    [BU] .[IS_UNAVA ILABLE_FRO M_VISTA] A S IS_UNAVA ILABLE_FRO M_VISTA
  27           FR OM ACT A
  28                    INNE R JOIN BED _UNAVAILAB LE AS BU O N A.ID = B U.ACT_ID             
  29           WH ERE [A].[D OMAIN_ID]  = @DOMAIN_ ID AND BU. VISTA_SITE _UID = @VI STA_SITE_U ID AND [A] .CANCELED_ DATE IS NU LL
  30  
  31   END
  32  
  33  
  34   GO
  35  
  36