Thursday, September 18, 2008

ROLE_ROLE_PRIVS

ROLE_ROLE_PRIVS describes the roles granted to other roles. Information is provided only about roles to which the user has access.

Column

Datatype

NULL

Description

ROLE

VARCHAR2(30)

NOT NULL

Name of the role

GRANTED_ROLE

VARCHAR2(30)

NOT NULL

Role that was granted

ADMIN_OPTION

VARCHAR2(3)

Signifies that the role was granted with ADMIN option

Note:

1. Roles granted to DBA

select *

from ROLE_ROLE_PRIVS

where role = 'DBA'

ORDER BY GRANTED_ROLE;

ROLE

GRANTED_ROLE

ADMIN_OPTION

DBA

DELETE_CATALOG_ROLE

YES

DBA

EXECUTE_CATALOG_ROLE

YES

DBA

EXP_FULL_DATABASE

NO

DBA

GATHER_SYSTEM_STATISTICS

NO

DBA

IMP_FULL_DATABASE

NO

DBA

JAVA_ADMIN

NO

DBA

JAVA_DEPLOY

NO

DBA

PLUSTRACE

YES

DBA

SCHEDULER_ADMIN

YES

DBA

SELECT_CATALOG_ROLE

YES

DBA

WM_ADMIN_ROLE

NO

DBA

XDBADMIN

NO

2. See also Viewing Privilege and Role Information

Oracle data dictionary views

Oracle dynamic performance views

No comments:

Post a Comment