当前位置: 代码迷 >> SQL >> 透过pl/sql创建Oracle新用户
  详细解决方案

透过pl/sql创建Oracle新用户

热度:67   发布时间:2016-05-05 15:16:06.0
通过pl/sql创建Oracle新用户
创建用户和为用户分配权限
dba账号登录pl/sql developer
1、选择Users-->New,在打开的面板中输入般性用户信息
2、在Role privileges中,增加connect,resource两个Role(一般普通用户适用),如要dba角色则同时选择dba项。
3、在System privileges中,增加create any view和unlimited tablespace两个System privilege

Pl/sql代码 
-- Create the user  
create user DM 
  identified by "" 
  default tablespace USERS 
  temporary tablespace TEMP 
  profile DEFAULT 
  password expire; 
-- Grant/Revoke role privileges  
grant connect to DM; 
grant dba to DM; 
grant resource to DM; 
-- Grant/Revoke system privileges  
grant create any view to DM; 
grant unlimited tablespace to DM; 
  相关解决方案