148. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 3/27/2018 2:07:04 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.

148.1 Files compared

# Location File Last Modified
1 BMS_v2.4_Code.zip\BMS_v2.4_Code\Database\CreationScripts\BMS\4.Stored Procedures dbo.AUTHZ_INS_SECURITY_CONTEXT.sql Wed Mar 21 14:51:14 2018 UTC
2 BMS_v2.4_Code.zip\BMS_v2.4_Code\Database\CreationScripts\BMS\4.Stored Procedures dbo.AUTHZ_INS_SECURITY_CONTEXT.sql Wed Mar 21 23:59:47 2018 UTC

148.2 Comparison summary

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

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

148.4 Active regular expressions

No regular expressions were active.

148.5 Comparison detail

  1   /****** Ob ject:  Sto redProcedu re [dbo].[ AUTHZ_INS_ SECURITY_C ONTEXT]     Script Da te: 03/22/ 2012 11:04 :49 ****** /
  2   IF  EXISTS  (SELECT *  FROM sys. objects WH ERE object _id = OBJE CT_ID(N'[d bo].[AUTHZ _INS_SECUR ITY_CONTEX T]') AND t ype in (N' P', N'PC') )
  3   DROP PROCE DURE [dbo] .[AUTHZ_IN S_SECURITY _CONTEXT]
  4   GO
  5   SET ANSI_N ULLS ON
  6   GO
  7   SET QUOTED _IDENTIFIE R ON
  8   GO
  9   CREATE PRO CEDURE [db o].[AUTHZ_ INS_SECURI TY_CONTEXT ]
  10           @U SER_ID          DNS    AR(8000),
  11           @D OMAIN           DNS    AR(50)=NUL L,
  12           @S UPERUSER       BIT=NU LL
  13   AS
  14   BEGIN
  15           SE T NOCOUNT  ON;
  16           
  17           EX EC AUTHZ_D EL_SECURIT Y_CONTEXT
  18           
  19           IN SERT INTO  SECURITY_C ONTEXT WIT H(ROWLOCK)  (SPID, US ER_GROUP_I D, DOMAIN,  SUPERUSER )
  20           VA LUES (@@SP ID, @USER_ ID, @DOMAI N, @SUPERU SER)
  21   END
  22   GO