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

TASK_ID

NUMBER

NOT NULL

Zone map task identifier

MSG_ID

NUMBER

NOT NULL

Zone map message identifier

EXEC_NAME

VARCHAR2(128)

Zone map execution name

ACTION_MSG

VARCHAR2(4000)

Execution message text

TIME_STAMP

TIMESTAMP(9)

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”


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