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

本站中文解释

Oracle视图ALL_POLICY_ATTRIBUTES存储系统中所有政策组属性、条件、行动和日志信息。它可以帮助数据库管理员更好地管理政策,并了解所有定义的政策。这个视图允许用户查询存储在Oracle数据库中的政策组中定义的所有属性、条件、行动和日志信息,这些政策组定义了特定的安全政策。

使用Oracle视图ALL_POLICY_ATTRIBUTES,可以检索得知:

1. 政策组的属性信息,例如:政策组的拥有者,政策组是否启用,以及政策组是否使用满足下列条件的策略决策表,等等。

2. 政策组的条件信息,例如:用户的角色或者访问状态;政策组控制行为所需要的资源;以及政策组控制行为所需要的操作或功能,等等。

3. 政策组的行动信息,例如:政策组对资源执行的操作或功能,以及对资源的操作是否可以被授权,等等。

4. 向政策组查询日志,以查找政策组最近的使用情况。

使用Oracle视图ALL_POLICY_ATTRIBUTES可以收集必要的政策信息,以便更加有效、准确地管理数据库安全政策。

官方英文解释

ALL_POLICY_ATTRIBUTES lists the attribute associations {Namespaces, Attributes} of context-sensitive and shared context-sensitive Oracle Virtual Private Database (VPD) policies for objects accessible to the current user.

Related Views

  • DBA_POLICY_ATTRIBUTES lists the attribute associations {Namespaces, Attributes} of all context-sensitive and shared context-sensitive Oracle Virtual Private Database (VPD) policies in the database.

  • USER_POLICY_ATTRIBUTES lists the attribute associations {Namespaces, Attributes} of all context-sensitive and shared-context sensitive Oracle Virtual Private Database (VPD) policies for synonyms, tables, or views owned by the user.

Column Datatype NULL Description

OBJECT_OWNER

VARCHAR2(128)

Owner of the synonym, table, or view

OBJECT_NAME

VARCHAR2(128)

Name of the synonym, table, or view

POLICY_GROUP

VARCHAR2(128)

Name of the policy group

POLICY_NAME

VARCHAR2(128)

Name of the policy

NAMESPACE

VARCHAR2(128)

Name of the local application context

ATTRIBUTE

VARCHAR2(128)

Name of the attribute

COMMON

VARCHAR2(3)

Indicates whether the policy attribute is applied and enforced in all application PDBs (YES) or only in the local PDB (NO)

INHERITED

VARCHAR2(3)

Indicates whether the policy attribute is inherited from the root (YES) or not (NO)

See Also:

  • “DBA_POLICY_ATTRIBUTES”

  • “USER_POLICY_ATTRIBUTES”


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