Checking Object Privileges Granted to a Role

role_tab_privs has object privileges have been granted to a role. The columns in role_tab_privs:

ColumnTypeDescription
roleVARCHAR2(30)User to whom the privilege was granted
ownerVARCHAR2(30)User who owns the object
table_nameVARCHAR2(30)Name of the object on which the privilege was granted
column_nameVARCHAR2(30)Name of the column (if applicable)
privilegeVARCHAR2(40)Privilege on the object
grantableVARCHAR2(3)Whether the privilege was granted with the GRANT option (YES or NO)

SELECT * FROM role_tab_privs WHERE role='ROLE_NAME' ORDER BY table_name;
Home »
Oracle »
User, Privilege, Role » 

Roles:
  1. Creating Roles
  2. Granting Roles to a User
  3. Checking Roles Granted to a User
  4. Checking System Privileges Granted to a Role
  5. Checking Object Privileges Granted to a Role
  6. Default Roles
  7. Revoking a Role
  8. Dropping a Role
Related: