File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed
openid-connect-server-webapp/src/main/resources/db/oracle Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change 1+ drop user oauth cascade;
2+ drop tablespace data_ts INCLUDING CONTENTS AND DATAFILES;
3+ drop tablespace temp_ts INCLUDING CONTENTS AND DATAFILES;
4+ CREATE TABLESPACE data_ts DATAFILE 'data_ts.dat' SIZE 40M ONLINE;
5+ CREATE TEMPORARY TABLESPACE temp_ts TEMPFILE 'temp_ts.dbf' SIZE 5M AUTOEXTEND ON;
6+ create user oauth identified by test DEFAULT TABLESPACE data_ts QUOTA 500K ON data_ts TEMPORARY TABLESPACE temp_ts;
7+ GRANT CONNECT TO oauth;
8+ GRANT UNLIMITED TABLESPACE TO oauth;
9+ grant create session to oauth;
10+ grant create table to oauth;
11+ GRANT CREATE TABLESPACE TO oauth;
12+ GRANT CREATE VIEW TO oauth;
13+ GRANT CREATE ANY INDEX TO oauth;
14+ GRANT CREATE SEQUENCE TO oauth;
15+ GRANT CREATE SYNONYM TO oauth;
You can’t perform that action at this time.
0 commit comments