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

本站中文解释

Oracle视图V$METRICNAME主要用于查询当前系统中有效的各种性能指标及其属性,可以查看每个指标的名称、描述、单位、类型、最大值、最小值等属性,以及其他指标度量信息,帮助完成用户管理数据库应用性能的分析和监视工作。

使用方法:

1、查询所有性能指标及其属性:
SELECT * FROM V$METRICNAME;

2、查询特定性能指标的属性:
SELECTMETRIC#, METRIC_NAME, METRIC_DESC, METRIC_UNIT, METRIC_TYPE,
METRIC_MIN_VAL, METRIC_MAX_VAL,
FROM V$METRICNAME
WHERE METRIC_NAME = ‘Xxx_Name’

官方英文解释

V$METRICNAME displays the mapping of the name of metrics to their metric ID.

Column Datatype Description

GROUP_ID

NUMBER

Metric group ID

GROUP_NAME

VARCHAR2(64)

Metric group name

METRIC_ID

NUMBER

Metric ID

METRIC_NAME

VARCHAR2(64)

Metric name

METRIC_UNIT

VARCHAR2(64)

Unit of measurement

CON_ID

NUMBER

The ID of the container to which the data pertains. Possible values include:

  • 0: This value is used for rows containing data that pertain to the entire CDB. This value is also used for rows in non-CDBs.

  • 1: This value is used for rows containing data that pertain to only the root

  • n: Where n is the applicable container ID for the rows containing data


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