Oracle 视图 AUDIT_UNIFIED_POLICY_COMMENTS 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图是由用户创建的一个特殊表,其数据可以从物理表或其他用户创建的视图(包括聚集)获得。它是一个虚拟表,将表联系在一起,用户可以使用其来聚集数据,以使查询更容易或更快。视图可以避免被修改,只能读取。
AUDIT_UNIFIED_POLICY_COMMENTS视图显示了统一策略注释。
可以使用此视图检索一个或多个统一策略的完整注释:
SELECT * FROM AUDIT_UNIFIED_POLICY_COMMENTS
WHERE policy_name IN (‘MyPolicy’, ‘MyOtherPolicy’);
官方英文解释
AUDIT_UNIFIED_POLICY_COMMENTS
shows the description of each unified audit policy, if a description was entered for the unified audit policy using the COMMENT
SQL statement.
Note:
This view is populated only in an Oracle Database where unified auditing is enabled.
See Oracle Database Security
Guide for more information about unified auditing.See Oracle Database Upgrade
Guide for more information about migrating to unified auditing.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
| Name of the unified audit policy |
|
| Description of the unified audit policy, if one was entered using the |
编辑:一起学习网
标签:视图,注释,策略,数据,用户