187. EPMO Open Source Coordination Office Redaction File Detail Report

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

187.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._CHECK_UPDATE_PERMISSION.sql Wed Oct 23 12:51:08 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._CHECK_UPDATE_PERMISSION.sql Thu Oct 26 15:43:48 2017 UTC

187.2 Comparison summary

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

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

187.4 Active regular expressions

No regular expressions were active.

187.5 Comparison detail

  1   /****** Ob ject:  Sto redProcedu re [dbo].[ _CHECK_UPD ATE_PERMIS SION]    S cript Date : 03/22/20 12 11:04:4 9 ******/
  2   IF  EXISTS  (SELECT *  FROM sys. objects WH ERE object _id = OBJE CT_ID(N'[d bo].[_CHEC K_UPDATE_P ERMISSION] ') AND typ e in (N'P' , N'PC'))
  3   DROP PROCE DURE [dbo] .[_CHECK_U PDATE_PERM ISSION]
  4   GO
  5  
  6   SET ANSI_N ULLS ON
  7   GO
  8   SET QUOTED _IDENTIFIE R ON
  9   GO
  10  
  11   CREATE PRO CEDURE [db o].[_CHECK _UPDATE_PE RMISSION]
  12           @P ERMISSION                        
VARCHAR(25 0),
  13           @R ESOURCE_RO OT           
VARCHAR(25 0),
  14           @R ESOURCE_EX TENSION      
VARCHAR(25 0)
  15   AS
  16   BEGIN
  17           SE T NOCOUNT  ON;
  18           IF  @RESOURCE _EXTENSION  ='' OR @R ESOURCE_EX TENSION IS  NULL RETU RN
  19       IF dbo .F_CHECK_P ERMISSION( @PERMISSIO N,@RESOURC E_ROOT,@RE SOURCE_EXT ENSION)=0
  20           RA ISERROR (' Acces deni ed: "%s"',  18, 13, @ PERMISSION )
  21   END
  22   GO