Is it possible to view the roles of the user without having DBA Privilege? If so, how?
SELECT * FROM DBA_TAB_PRIVS WHERE GRANTEE = 'USER_NAME';
The above query needs the "SELECT_CATALOG_ROLE" role.
I need to get the result of the above query without (DBA and SELECT_CATALOG_ROLE) Privileges.