3275. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 6/9/2017 3:50:01 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.

3275.1 Files compared

# Location File Last Modified
1 Fri Jun 9 19:50:01 2017 UTC
2 eHealth_Exch (eHealth Exchange Enhancements) Build 3 docs & code_May_2017.zip\VAP_CIF_CODE0502.zip\VAP_CIF_CODE0502\VAP_CIF_CODE0502\nvap-db\src\main\resources\sql\production\2.5 2.5_prod_update.sql Fri Apr 21 20:03:26 2017 UTC

3275.2 Comparison summary

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

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

3275.4 Active regular expressions

No regular expressions were active.

3275.5 Comparison detail

        1   set echo o n
        2   set feedba ck on
        3   set server output on   
        4   var start_ date varch ar2(80);
        5   var end_da te varchar 2(80);
        6   var sid va rchar2(10) ;
        7   var host v archar2(30 ); 
        8   var user v archar2(30 );
        9  
        10  
        11  
        12   spool VAP_ 2.5_update .log;
        13  
        14  
        15   begin
        16           se lect to_ch ar(sysdate , 'mm-dd-y yyy hh24:m i:ss') int o  :start_ date from  dual;
        17           se lect insta nce_name i nto:sid fr om v$insta nce;
        18           se lect host_ name into  :host from  v$instanc e;
        19           se lect user  into:user  from dual;
        20           
        21           se lect 'Scri pt execute d on SID:   '||:sid f rom dual;
        22           se lect 'Scri pt execute d on host:  '||:host  from dual;
        23           se lect 'Scri pt start d ate/time:   '||:start _date from  dual;
        24           se lect 'Scri pt execute d by:       '||:user  from dual;
        25    
        26   end;
        27   /
        28  
        29   select 'be gin create  functions  ********* ********** ********** ********** ****' from  dual; 
        30   @create_is testpatien t.sql
        31   /
        32   show error s;
        33   select 'en d create f unctions * ********** ********** ********** ********** ****' from  dual;
        34  
        35   select 'be gin create  tables ** ********** ********** ********** ********** *' from du al; 
        36   @create_de layed_cons ent_tables .sql
        37   /
        38   show error s;
        39   @create_de layed_cons ent_view.s ql
        40   /
        41   show error s;
        42   @create_de scriptor_t able.sql
        43   /
        44   show error s;
        45   @create_le tter_table s.sql
        46   /
        47   show error s;
        48   @create_ma il_log_tab le.sql
        49   /
        50   show error s;
        51   select 'en d create t ables **** ********** ********** ********** ********** *' from du al;
        52  
        53   select 'be gin alter  tables *** ********** ********** ********** ********** ' from dua l; 
        54   @alter_all owed_org_t able.sql
        55   /
        56   show error s;
        57   @alter_del ayed_conse nt_table.s ql
        58   /
        59   show error s;
        60   @alter_fac ility_tabl e.sql
        61   /
        62   show error s;
        63   @alter_mai l_notifica tion_table .sql
        64   /
        65   show error s;
        66   select 'en d alter ta bles ***** ********** ********** ********** ********** ' from dua l;  
        67  
        68   select 'be gin update  tables ** ********** ********** ********** ********** *' from du al; 
        69   @update_de layed_cons ent_view.s ql
        70   /
        71   show error s;
        72   @update_de scriptors_ 1.sql
        73   /
        74   show error s;
        75   @update_de scriptors_ 2.sql
        76   /
        77   show error s;
        78   @update_de scriptors_ 3.sql
        79   /
        80   show error s;
        81   @update_ma il_templat e_table.sq l
        82   /
        83   show error s;
        84   select 'en d update t ables **** ********** ********** ********** ********** *' from du al; 
        85  
        86   select 'be gin popula te tables  ********** ********** ********** ********** ***' from  dual; 
        87   @populate_ descriptor _table.sql
        88   /
        89   show error s;
        90   @populate_ mail_templ ate_table. sql
        91   /
        92   show error s;
        93   select 'en d populate  tables ** ********** ********** ********** ********** ***' from  dual; 
        94  
        95   commit;
        96  
        97   begin
        98           se lect to_ch ar(sysdate , 'mm-dd-y yyy hh24:m i:ss') int o :end_dat e from dua l;
        99  
        100           se lect 'Scri pt end dat e/time:    '||:end_da te from du al;
        101           se lect 'Scri pt execute d in '||(t o_date(:en d_date, 'm m_dd_yyyy  hh24:mi:ss ') - to_da te(:start_ date, 'mm- dd-yyyy hh 24:mi:ss') ) *24*60*6 0||' secon ds' from d ual;
        102   end;
        103   /
        104  
        105   spool off;