oracle的授权问题,create session只能由sys用户授权吗
发布网友
发布时间:2022-05-19 18:49
我来回答
共1个回答
热心网友
时间:2023-10-16 05:29
1、可以在scott用户下,前提是给scott赋权限的时候,加上WITH GRANT OPTION,如
grant create user to scott with grant option;
2、create session是角色,是应该在user_role_privs里面查询的。如果能够使用用户连接,肯定是有create session权限的。追问SQL>conn /as sysdba;
SQL>grant create session to scott with grant option;
会提示:only the admin option can be specified
SQL>grant create session to scott with admin option;
才执行成功。。