14. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 12/7/2018 11:35:50 AM Central Standard 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.

14.1 Files compared

# Location File Last Modified
1 C:\SCRUB\MHED\MHED\VAR 4.10.0\var-resources-release-4.10@1091a011694\var-db\liquibase\sql oracle.createVARDB.sql Thu Oct 18 18:44:32 2018 UTC
2 C:\MHED-scrubbed\MHED\MHED\VAR 4.10.0\var-resources-release-4.10@1091a011694\var-db\liquibase\sql oracle.createVARDB.sql Fri Dec 7 17:03:33 2018 UTC

14.2 Comparison summary

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

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

14.4 Active regular expressions

No regular expressions were active.

14.5 Comparison detail

  1   spool crea te_vardb.l og
  2  
  3   WHENEVER S QLERROR EX IT SQL.SQL CODE
  4  
  5   declare
  6           v_ count numb er(1);
  7           v_ sql varcha r2(500);
  8     
  9   begin
  10           se lect count (1) into v _count fro m DBA_TABL ESPACES wh ere TABLES PACE_NAME=  'VARDB_DA TA';
  11           if  v_count =  0 then
  12       v_sql  := 'CREATE  TABLESPAC E VARDB_DA TA DATAFIL E ''&1/var db_data01. dbf'' SIZE  516M auto extend on  next 128M' ;
  13                    EXEC UTE IMMEDI ATE v_sql;
  14           en d if;          
  15           se lect count (1) into v _count fro m DBA_USER S where US ERNAME = ' VARDB';
  16           if  v_count =  0 then
  17         v_sq l := 'CREA TE USER VA RDB IDENTI FIED BY &2  DEFAULT T ABLESPACE  VARDB_DATA  QUOTA unl imited ON  VARDB_DATA ';
  18         EXEC UTE IMMEDI ATE v_sql;
  19       end if ;
  20   end;
  21   /
  22   grant crea te session  to VARDB;
  23   grant crea te table t o VARDB;
  24   grant QUER Y REWRITE  to VARDB
  25  
  26   spool off
  27