查詢使用者的系統許可權和使用者所擁有的角色

perfychi發表於2012-12-31

注:
檢視dba_sys_privs是用來查詢使用者系統許可權的;
檢視dba_role_privs是用來查詢使用者角色的

在sqlplus 環境中執行下列語句:

define 1=‘關注的使用者’
set linesize 200
select grantee, privilege from dba_sys_privs   where grantee='&&1';
select grantee, GRANTED_ROLE  from dba_role_privs where grantee='&&1';
select username, DEFAULT_TABLESPACE  , TEMPORARY_TABLESPACE from dba_users where username='&&1';


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/27042095/viewspace-751956/,如需轉載,請註明出處,否則將追究法律責任。

相關文章