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

本站中文解释

Oracle视图 DBA_AUDIT_POLICY_COLUMNS 是DBA_AUDIT_POLICY视图的子视图,主要用于查看审计策略用到的数据表中的字段信息,主要有POLICY_NAME、TABLE_SCHEMA、TABLE_NAME、COLUMN_NAME,POSITION、EVENT_TYPE等成员,主要用于帮助数据库审计人员了解审计策略中涉及到的表字段信息,加快审计效率。

使用方法:

DBA_AUDIT_POLICY_COLUMNS视图的使用方法很简单,如果要查看某个审计策略中被涉及的表字段信息,可以使用以下SQL查询语句:

SELECT * FROM DBA_AUDIT_POLICY_COLUMNS
WHERE POLICY_NAME=”
ORDER BY TABLE_SCHEMA, TABLE_NAME, POSITION;

官方英文解释

DBA_AUDIT_POLICY_COLUMNS describes all fine-grained auditing policy columns in the database. Its columns are the same as those in ALL_AUDIT_POLICY_COLUMNS.

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_POLICY_COLUMNS”


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