+ -
当前位置:首页 → 问答吧 → Oralce用户权限管理

Oralce用户权限管理

时间:2011-09-06

来源:互联网

请问在system模式下(不是在用户模式)  
如何查询其他用户所具备的角色 和 所拥有的权限(包括系统权限和对象权限)
 

作者: xieyihn   发布时间: 2011-09-06

SQL code

--查看用户有哪些角色
select granted_role from dba_role_privs where grantee='SCOTT';
--查看用户(角色)有哪些权限
select privilege from dba_sys_privs where grantee='SCOTT';
select privilege from dba_sys_privs where grantee='CONNECT';

作者: zhuomingwang   发布时间: 2011-09-06

热门下载

更多