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

本站中文解释

Oracle USER_AUDIT_POLICIES 视图包含有关每个数据库用户的审计策略的信息。它主要用于控制和追踪数据库用户对对象的访问行为。它包括允许用户对特定对象的如何访问审计和追踪的指令。

使用 Oracle USER_AUDIT_POLICIES 视图的语法:

SELECT *
FROM user_audit_policies
WHERE user_name=”;

这将显示特定用户的每个视图的审计策略。

官方英文解释

USER_AUDIT_POLICIES describes the fine-grained auditing policies on the tables and views owned by the current user. Its columns (except for OBJECT_SCHEMA) are the same as those in ALL_AUDIT_POLICIES.

Note:

This view is populated only in an Oracle Database where unified auditing is not enabled. When unified auditing is enabled in Oracle Database, the audit records are populated in the new audit trail and can be viewed from UNIFIED_AUDIT_TRAIL.

  • See Oracle Database Security
    Guide
    for more information about unified auditing.

  • See Oracle Database Upgrade
    Guide
    for more information about migrating to unified auditing.

See Also:

“ALL_AUDIT_POLICIES”


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