oracle中一些常用的视图

jopen 11年前

查询某个用户具有的系统权限:
select * from dba_sys_privs where grantee='SYS';
查询某个角色中具有什么系统权限:
select * from role_sys_privs where role='RESOURCE';
查询某个角色中包含有什么角色
select * from role_role_privs where role='SYSDBA';

查询数据文件

select * from v$datafile;

查询表空间

select * from v$tablespace;

查询当前会话

select * from v$session;

查询当前实例

select * from v$instance;