Browse Source

Merge pull request #1405 from angelok1/db_script_fixes

Corrected Oracle create script
pull/1410/head
Justin Richer 7 years ago committed by GitHub
parent
commit
04f439ec58
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 15
      openid-connect-server-webapp/src/main/resources/db/oracle/create_db-user

15
openid-connect-server-webapp/src/main/resources/db/oracle/create_db-user

@ -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;
Loading…
Cancel
Save