当前位置: 移动技术网 > IT编程>数据库>Oracle > Oracle创建用户的方法

Oracle创建用户的方法

2018年04月05日  | 移动技术网IT编程  | 我要评论

大高加索山,锡线回收,洋葱先生董事长苏醒

创建用户

-- Create the user 
create user MEP
  identified by whq1987
  default tablespace MEP
  temporary tablespace MEP_TEMP
  profile DEFAULT;
-- Grant/Revoke role privileges 
grant connect to MEP;
grant datapump_exp_full_database to MEP;
grant datapump_imp_full_database to MEP;
grant dba to MEP;
grant exp_full_database to MEP;
grant imp_full_database to MEP;
grant resource to MEP;
-- Grant/Revoke system privileges 
grant alter_user to MEP;
grant comment any table to MEP;
grant create any view to MEP;
grant create session to MEP;
grant create user to MEP;
grant delete any table to MEP;
grant drop user to MEP;
grant export full database to MEP;
grant unlimited tablespace to MEP;

如对本文有疑问,请在下面进行留言讨论,广大热心网友会与你互动!! 点击进行留言回复

相关文章:

验证码:
移动技术网