ORA-28031: maximum of string enabled roles exceeded

Answers were Sorted based on User's Feedback



ORA-28031: maximum of string enabled roles exceeded..

Answer / guest

Cause: The user attempted to enable too many roles.

Action: Enable fewer roles.

Please add more information about this Error

Is This Answer Correct ?    0 Yes 0 No

ORA-28031: maximum of string enabled roles exceeded..

Answer / cvbb

At first time you can think about max_enabled_roles
parameter but max_enabled_roles parameter has nothing to do
if you enable 148 user-defined roles.

In fact this parameter is deprecated. It is retained for
backward compatibility only. You can see this parameter
settings by,

SQL> show parameter max_enable

NAME TYPE VALUE
———————————— ——————————— ——————————
max_enabled_roles integer 150

Though this parameter is set to 150 and you have enabled 148
user defined roles but additional user-defined roles can’t
be enabled because of the actual number of roles that users
can enable is 148. So max_enabled_roles is 2 plus 148,
because each user has two additional roles, PUBLIC and the
user’s own role.

As there is limit to 148 so you have to disable fewer roles
or drop some roles and reorganize your database role policy.

You can enable or disable roles by using the SET ROLE
statement for your current session.

If you want to enable all roles except manager and clerk
role then use,

SET ROLE ALL EXCEPT manager, clerk;

Remember roles listed in the EXCEPT clause must be roles
granted directly to you. They cannot be roles granted to you
through other roles.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Oracle Errors Interview Questions

ORA-02256: number of referencing columns must match referenced columns

1 Answers  


ORA-01542: tablespace 'string' is offline, cannot allocate space in it

1 Answers  


IMG-00901: VIR signature version mismatch

1 Answers  


SQL*Loader-00903: Database must be at least version number.number.number.number.number for direct path

1 Answers  


ORA-38442: The ADT "string" is not in a valid state.

1 Answers  


ORA-10577: Can not invoke test recovery for managed standby database recovery

1 Answers  


ORA-31602: parameter string value "string" in function string inconsistent with string

1 Answers  


TNS-12508: TNS:listener could not resolve the COMMAND given

1 Answers  


ORA-01763: update or delete involves outer joined table

1 Answers  


PCB-00630: Host variable is not of LOB type

1 Answers  


ORA-04052: error occurred when looking up remote object stringstringstringstringstring

1 Answers  


ORA-14251: Specified subpartition does not exist

1 Answers  


Categories