218. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 4/27/2017 3:14:12 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.

218.1 Files compared

# Location File Last Modified
1 Thu Apr 27 19:14:12 2017 UTC
2 PRE-Inbound-eRx-2.0.3.040.zip\PS_INB_ERX_DataMgmt\target\PS_INB_ERX_DataMgmt-1.0.2.010-zipfile.zip\INB_ERX2.0\DDL\installation_scripts PHARMACY_TRG.sql Sun Sep 4 18:31:44 2016 UTC

218.2 Comparison summary

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

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

218.4 Active regular expressions

No regular expressions were active.

218.5 Comparison detail

        1   CREATE OR  REPLACE TR IGGER ERX. PHARMACY_T RG 
        2       BEFORE  INSERT OR  UPDATE ON  ERX.PHARM ACY 
        3       FOR EA CH ROW 
        4   BEGIN 
        5   IF UPDATIN G THEN
        6     :NEW.UPD ATED_DATE  := SYSDATE ;
        7   ELSE
        8     :NEW.CRE ATED_DATE  := SYSDATE ;
        9      IF :NEW .PHARMACY_ ID IS NULL  THEN
        10      :NEW.PH ARMACY_ID  := PHARMAC Y_ID_SEQ.N EXTVAL;
        11      END IF;
        12   END IF;
        13   END; 
        14   /
        15  
        16