How to list all the roles existing in Oracle database?
I have been searching in the tables :
ROLE_TAB_PRIVS ROLE_SYS_PRIVS ROLE_ROLE_PRIVS SELECT * FROM ROLE_TAB_PRIVS WHERE ROLE = 'ROLETEST';
but I can't find a role that I have just created.
Got the answer :
SELECT * FROM DBA_ROLES;
2.1m questions
2.1m answers
60 comments
57.0k users