标签:io ar sp on bs ad ef as res
-- Create the user
create user ADMIN
default tablespace SYSTEM
temporary tablespace TEMP
profile DEFAULT
password expire;
-- Grant/Revoke role privileges
grant connect to ADMIN;
grant dba to ADMIN;
grant resource to ADMIN;
-- Grant/Revoke system privileges
grant create table to ADMIN with admin option;
grant unlimited tablespace to ADMIN;
标签:io ar sp on bs ad ef as res
原文地址:http://www.cnblogs.com/p_db/p/4052733.html