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

本站中文解释

V$QMON_TASK_STATS是Oracle Enterprise Manager提供的一个动态性能视图,用于监控管理工具Data Guard Broker运行的数据库任务的运行时间、空闲时间、完成百分比等性能指标。

可以使用SQL语句来查看V$QMON_TASK_STATS,例如:

SELECT task_name, task_timestamp, idle_time, running_time
FROM v$qmon_task_stats;

官方英文解释

V$QMON_TASK_STATS displays information and statistics based on different queue monitor tasks in the system (spilling, time manager activity, and so on). There is one row per kind of task. The rows are deleted when the database (or instance in an Oracle RAC environment) restarts.
Column Datatype Description

TASK_NAME

VARCHAR2(32)

Name of the task

TASK_TYPE

VARCHAR2(40)

Type of the task

LAST_CREATED_TASKNUM

NUMBER

Unique task number last created for this task

NUM_TASKS

NUMBER

Number of tasks currently present

TOTAL_TASK_RUN_TIME

NUMBER

Cumulative task run time

TOTAL_TASK_RUNS

NUMBER

Cumulative task runs

TOTAL_TASK_FAILURES

NUMBER

Cumulative failures

METRIC_TYPE

VARCHAR2(50)

Type of metric gathered for this task type

METRIC_VALUE

NUMBER

Value of this metric

LAST_FAILURE

VARCHAR2(32)

Last failure encountered while executing this type of task

LAST_FAILURE_TIME

TIMESTAMP(3) WITH TIME ZONE

Time when the last failure occurred

LAST_FAILURE_TASKNUM

NUMBER

Task number of the last failed task for this task

REMARK

VARCHAR2(64)

Remarks about the task

CON_ID

NUMBER

The ID of the container to which the data pertains. The CON_ID value in this view is always 0. The rows pertain to the entire CDB or to the non-CDB.


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