ORACLE 新建用户脚本

来源:互联网 发布:闻道网络 编辑:程序博客网 时间:2024/06/06 14:23

 -- Create the user 

create user oral
  identified by oral
  default tablespace USERS
  temporary tablespace TEMP
  profile DEFAULT;
-- Grant/Revoke role privileges 
grant dba to oral with admin option;
-- Grant/Revoke system privileges 
grant unlimited tablespace to oral with admin option;
原创粉丝点击