How to check enabled roles?
*To view all roles in database we have DBA_ROLES which has the following structure:
ROLE NOT NULL VARCHAR2(30) Role Name
PASSWORD_REQUIRED VARCHAR2(8) Indicates if the role requires a password to be enable
By SET ROLE* statement we can enable or disable roles
The parameter MAX_ENABLED_ROLES* determines the maximum enabled roles in the database
How can we check the enabled or disabled roles in database?
Saad,