oracle 创建用户

-- Create the user 
create user TEST_USER identified by TEST_USER 
  default tablespace USERS
  temporary tablespace TEMP
  profile DEFAULT;
-- Grant/Revoke role privileges 
grant dba to TEST_USER ;
-- Grant/Revoke system privileges 
grant unlimited tablespace to TEST_USER ;

相关推荐