676. EPMO Open Source Coordination Office Redaction File Detail Report

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

676.1 Files compared

# Location File Last Modified
1 OSCIF_BMS_v2_iter 2_September_2017.zip\BMS_Cand\Source\Sources\Database\BMSv2Updates\2.2.17.1 usp_Delete_Patient_Icon_Association.sql Wed Oct 18 19:03:30 2017 UTC
2 OSCIF_BMS_v2_iter 2_September_2017.zip\BMS_Cand\Source\Sources\Database\BMSv2Updates\2.2.17.1 usp_Delete_Patient_Icon_Association.sql Thu Oct 26 19:41:50 2017 UTC

676.2 Comparison summary

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

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

676.4 Active regular expressions

No regular expressions were active.

676.5 Comparison detail

  1   USE [BMS]
  2   GO
  3   /****** Ob ject:  Sto redProcedu re [dbo].[ usp_Delete _Patient_I con_Associ ation]     Script Dat e: 7/14/20 17 10:14:0 3 AM ***** */
  4   SET ANSI_N ULLS ON
  5   GO
  6   SET QUOTED _IDENTIFIE R ON
  7   GO
  8   -- ======= ========== ========== ========== ========
  9   -- Author:                 PII
  10   -- Create  date: 03.0 5.2012
  11   -- Descrip tion: Dele te icon as sociation.
  12   -- ======= ========== ========== ========== ========
  13   ALTER PROC EDURE [dbo ].[usp_Del ete_Patien t_Icon_Ass ociation] 
  14           @P ATIENT_UID  uniqueide ntifier,
  15           @I CON_FLAG_I D int = NU LL
  16   AS
  17   BEGIN
  18   SET NOCOUN T ON
  19           IF  (@ICON_FL AG_ID IS N ULL)
  20                    BEGI N
  21                             DELETE  ICON_ASSO CIATION
  22                             FROM I CON_ASSOCI ATION
  23                             WHERE  PATIENT_UI D = @PATIE NT_UID
  24                    END
  25           EL SE
  26                    BEGI N
  27                             DELETE  ICON_ASSO CIATION
  28                             FROM I CON_ASSOCI ATION
  29                             WHERE  PATIENT_UI D = @PATIE NT_UID AND  ICON_FLAG _ID = @ICO N_FLAG_ID
  30                    END               
  31   END
  32