Skip to content

Commit

Permalink
Merge pull request #1405 from angelok1/db_script_fixes
Browse files Browse the repository at this point in the history
Corrected Oracle create script
  • Loading branch information
jricher committed Jun 11, 2018
2 parents aa2dc78 + 69afba5 commit 04f439e
Showing 1 changed file with 15 additions and 0 deletions.
@@ -0,0 +1,15 @@
drop user oauth cascade;
drop tablespace data_ts INCLUDING CONTENTS AND DATAFILES;
drop tablespace temp_ts INCLUDING CONTENTS AND DATAFILES;
CREATE TABLESPACE data_ts DATAFILE 'data_ts.dat' SIZE 40M ONLINE;
CREATE TEMPORARY TABLESPACE temp_ts TEMPFILE 'temp_ts.dbf' SIZE 5M AUTOEXTEND ON;
create user oauth identified by test DEFAULT TABLESPACE data_ts QUOTA 500K ON data_ts TEMPORARY TABLESPACE temp_ts;
GRANT CONNECT TO oauth;
GRANT UNLIMITED TABLESPACE TO oauth;
grant create session to oauth;
grant create table to oauth;
GRANT CREATE TABLESPACE TO oauth;
GRANT CREATE VIEW TO oauth;
GRANT CREATE ANY INDEX TO oauth;
GRANT CREATE SEQUENCE TO oauth;
GRANT CREATE SYNONYM TO oauth;

0 comments on commit 04f439e

Please sign in to comment.