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

本站中文解释

Oracle视图DBA_APPLICATION_ROLES用于显示Application集成的roles的信息。它的数据来自dba_nest_rolesview和dba_roles及其相关视图。

此视图包含以下信息:

1. role_name:角色的名称
2. enabled_flag:角色是否可用
3. mlock_flag:是否已锁定
4. parent_role_name:父角色
5. application_role:是否为Application角色
6. comments:角色的描述
7. authentication_type:角色的验证方式
8. common_role_name:公共角色名称

dba_application_roles视图可用于为应用程序定义角色,以及创建和锁定应用程序角色,以对应用程序访问具有限制的用户角色。

官方英文解释

DBA_APPLICATION_ROLES describes all the roles that have authorization policy functions defined.

Related View

USER_APPLICATION_ROLES describes all the roles for the current user that have authorization policy functions defined.

Column Datatype NULL Description

ROLE

VARCHAR2(128)

NOT NULL

Name of the application role

SCHEMA

VARCHAR2(128)

NOT NULL

Schema of the authorized package

PACKAGE

VARCHAR2(128)

NOT NULL

Name of the authorized package

See Also:

“USER_APPLICATION_ROLES”


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