Oracle 视图 DBA_CONNECT_ROLE_GRANTEES 官方解释,作用,如何使用详细说明

本站中文解释

Oracle视图DBA_CONNECT_ROLE_GRANTEES提供一个以每一个以授予持有CONNECT角色权限的用户或角色为一个主题。

具体字段包括:

GRANTEE – 接受CONNECT角色的用户名或角色名
GRANTED_ROLE – 授予的角色
ADMIN_OPTION – GRANTED_ROLE的可选管理权限
DEFAULT_ROLE – GRANTED_ROLE的可选默认角色

使用这个视图,DBA可以用于检查哪些数据库用户已被赋予了CONNECT 角色,以便对他们进行管理和控制。 DBA还可以检查特定用户是否被授予CONNECT角色及其管理权限和默认角色的情况。

可以使用如下SQL查询这个视图:

SELECT grantee,granted_role,admin_option,default_role
FROM dba_connect_role_grantees;

要检查一个特定的用户是否存在,可以这么做:

SELECT grantee,granted_role,admin_option,default_role
FROM dba_connect_role_grantees
WHERE grantee = ”;

官方英文解释

DBA_CONNECT_ROLE_GRANTEES displays information about users who are granted the CONNECT privilege.

Column Datatype NULL Description

GRANTEE

VARCHAR2(128)

User or schema to which the CONNECT role is granted

PATH_OF_CONNECT_ROLE_GRANT

VARCHAR2(4000)

The path of role inheritance through which the grantee is granted the CONNECT role

ADMIN_OPT

VARCHAR2(3)

Whether or not the grantee was granted the ADMIN option for the CONNECT role


数据运维技术 » Oracle 视图 DBA_CONNECT_ROLE_GRANTEES 官方解释,作用,如何使用详细说明