将 test 独立出模块,方便代码管理
This commit is contained in:
15
modules/test/db/oracle/create_user.sql
Normal file
15
modules/test/db/oracle/create_user.sql
Normal file
@@ -0,0 +1,15 @@
|
||||
|
||||
create user jeesite
|
||||
identified by jeesite
|
||||
quota unlimited on users;
|
||||
|
||||
grant connect,resource,create session,select any table,
|
||||
create any view,create any table,create any index,
|
||||
drop any table,drop any view,drop any index
|
||||
to jeesite;
|
||||
|
||||
-- 提示 oracle.jdbc.xa.OracleXAResource.recover 错误需要授权:
|
||||
grant select on sys.dba_pending_transactions to jeesite;
|
||||
grant select on sys.pending_trans$ to jeesite;
|
||||
grant select on sys.dba_2pc_pending to jeesite;
|
||||
grant execute on sys.dbms_system to jeesite;
|
||||
Reference in New Issue
Block a user