createuseradmin.sql

来源:互联网 发布:商业端游源码 编辑:程序博客网 时间:2024/06/05 06:22

createuseradmin.sql

--用system用户执行
alter   session   set   events'10851   trace   name   context   forever,level   1';
drop user admin cascade;

--创建admin用户
create user admin identified by admin
default tablespace USERS
temporary tablespace TEMP;
grant dba to admin;
grant select any table to admin;
grant unlimited tablespace to ADMIN;


exit

原创粉丝点击