Oralce 用户权限

今天安装了Oracle 11g R2,安装之后创建用户,用的是自己创建的tablespace,授权用的是grant dba to user, 最后发现权限还是不对,需要手动指定connect和resource的权限,才能好使,grant connect to user; grant resource to user; 而且在用tablespace的时候可以用系统提供的space,整个语句如下:

create user m33

  identified by m33

  default tablespace USERS

  temporary tablespace TEMP

  profile DEFAULT;

-- Grant/Revoke role privileges

grant connect to m33;

grant resource to m33;

-- Grant/Revoke system privileges

grant unlimited tablespace to m33;

 

问题原因还在纠结中。

你可能感兴趣的:(oracle,user,System)