Oracle 视图 DBA_ZONEMAP_AUTO_ACTIONS 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图DBA_ZONEMAP_AUTO_ACTIONS用来查看当前被自动管理参数DBA_ZONEMAP_AUTO_ACTIONS执行的动作。它包含了正在遵从特定参数设置并且在数据表上执行的多个动作,比如添加或删除索引等。
它能够用来观察自动化任务的执行情况,以确认设置的参数是否被成功应用在数据库上,以及验证参数对系统及数据库性能的影响情况。
使用方法:
1. 连接到Oracle数据库实例
2. 执行以下查询来查看视图DBA_ZONEMAP_AUTO_ACTIONS应用的动作:
SELECT action, dbid, zone_nam, zone_set_name FROM dba_zmap_auto_actions;
官方英文解释
DBA_ZONEMAP_AUTO_ACTIONS
provides information about automatic zone map tasks and executions.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
|
Zone map task identifier |
|
|
|
Zone map message identifier |
|
|
|
Zone map execution name |
|
|
|
Execution message text |
|
|
|
Execution timestamp |
The TASK_ID
, MSG_ID
, and EXEC_NAME
columns in this view correspond to the same columns in the DBA_ZONEMAP_AUTO_FINDINGS
view. This allows you to correlate the actions in DBA_ZONEMAP_AUTO_ACTIONS
with their corresponding findings in DBA_ZONEMAP_AUTO_FINDINGS
.
Note:
This view is available starting with Oracle Database 21c.
See Also:
“DBA_ZONEMAP_AUTO_FINDINGS”