Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Role of particular user?

Status
Not open for further replies.

elziko

Programmer
Nov 7, 2000
486
GB
How would I find the role of a particular user. Or in what table would this information be stored so that I can use SQL to find out a users priveleges??

Many Thanks

elziko
 
u can find the role of particular user using following two table
sys.dba_users , sys.dba_sys_privs
 
The roles that have been granted to an id can be found in dba_role_privs. E.g. SELECT GRANTEE,GRANTED_ROLE FROM DBA_ROLE_PRIVS;
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top