855. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 10/26/2017 10:44:49 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.

855.1 Files compared

# Location File Last Modified
1 OSCIF_BMS_v2_iter 2_September_2017.zip\BMS_Cand\Source\Sources\Database\CreationScripts\BMS_DW\2.Functions dbo.ufn_GetWardsByFacilityId.UserDefinedFunction.sql Wed Oct 18 19:15:50 2017 UTC
2 OSCIF_BMS_v2_iter 2_September_2017.zip\BMS_Cand\Source\Sources\Database\CreationScripts\BMS_DW\2.Functions dbo.ufn_GetWardsByFacilityId.UserDefinedFunction.sql Thu Oct 26 19:48:33 2017 UTC

855.2 Comparison summary

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

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

855.4 Active regular expressions

No regular expressions were active.

855.5 Comparison detail

  1   /****** Ob ject:  Use rDefinedFu nction [db o].[ufn_Ge tWardsByFa cilityId]     Script  Date: 03/2 1/2012 16: 03:44 **** **/
  2   IF  EXISTS  (SELECT *  FROM sys. objects WH ERE object _id = OBJE CT_ID(N'[d bo].[ufn_G etWardsByF acilityId] ') AND typ e in (N'FN ', N'IF',  N'TF', N'F S', N'FT') )
  3   DROP FUNCT ION [dbo]. [ufn_GetWa rdsByFacil ityId]
  4   GO
  5  
  6   SET ANSI_N ULLS ON
  7   GO
  8   SET QUOTED _IDENTIFIE R ON
  9   GO
  10   -- ======= ========== ========== ========== ========
  11   -- Author:                
P II
  12   -- Create  date: 11/1 5/2011
  13   -- Descrip tion: Get  wards by f acility Id .
  14   -- ======= ========== ========== ========== ========
  15   CREATE FUN CTION [dbo ].[ufn_Get WardsByFac ilityId] 
  16   (
  17           @F ACILITY_ID  INT
  18   )
  19   RETURNS TA BLE
  20   AS
  21   RETURN(
  22                    SELE CT DIM_WAR D_ID as ID
  23                    FROM  GROUP_WAR D_ORGANIZA TION
  24                    WHER E DIM_ORGA NIZATION_I D IN 
  25                                (SE LECT WARDG ROUP.ID
  26                                      FROM dbo .DIM_ORGAN IZATION AS  WARDGROUP
  27                                      INNER JO IN dbo.DIM _ORGANIZAT ION_TYPE A S ORGANIZA TION_TYPE  ON 
  28                                               ORGANIZATI ON_TYPE.ID  = WARDGRO UP.DIM_ORG ANIZATION_ TYPE_ID
  29                                      WHERE OR GANIZATION _TYPE.CODE  = 'WGR' A ND WARDGRO UP.DIM_ORG ANIZATION_ ID = @FACI LITY_ID)           
  30                                                                                                            
  31           )
  32   GO