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

686.1 Files compared

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

686.2 Comparison summary

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

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

686.4 Active regular expressions

No regular expressions were active.

686.5 Comparison detail

  1   USE [BMS]
  2   GO
  3   /****** Ob ject:  Sto redProcedu re [dbo].[ usp_Get_Pa tient_Icon _Associati on]    Scr ipt Date:  7/14/2017  12:31:33 P M ******/
  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: Get  icon assoc iation.
  12   -- ======= ========== ========== ========== ========
  13   ALTER PROC EDURE [dbo ].[usp_Get _Patient_I con_Associ ation] 
  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                             SELECT  IA.ID, IA .PATIENT_U ID, NULL A S ICON_FLA G_ID, COUN T(IA.ID) I CON_ASSOCI ATION_COUN T
  22                              FROM  ICON_ASSOC IATION AS  IA
  23                              WHERE  IA.PATIEN T_UID = @P ATIENT_UID
  24                              GROUP  BY IA.ID,  IA.PATIEN T_UID
  25                    END
  26           EL SE
  27                    BEGI N
  28                             SELECT  IA.ID, IA .PATIENT_U ID, IA.ICO N_FLAG_ID,  COUNT(IA. ID) ICON_A SSOCIATION _COUNT
  29                              FROM  ICON_ASSOC IATION AS  IA
  30                              WHERE  IA.PATIEN T_UID = @P ATIENT_UID  AND ICON_ FLAG_ID =  @ICON_FLAG _ID
  31                              GROUP  BY IA.ID,  IA.PATIEN T_UID, IA. ICON_FLAG_ ID
  32                    END
  33   END
  34