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

本站中文解释

V$METRICGROUP视图描述了在Automatic Workload Repository (AWR)中可用的指标组信息。每个指标组都属于一个或多个主题组,指标组包含一组指标。这些指标可以比较实例间长期性能差异。

使用V$METRICGROUP视图时,可以执行以下步骤:

1. 查询所有支持的指标组:
SELECT *
FROM V$METRICGROUP;

2. 查询具有指定名称的指标组:
SELECT *
FROM V$METRICGROUP
WHERE metric_group = ”;

3. 查询具有指定主题组的指标组:
SELECT *
FROM V$METRICGROUP
WHERE topic_group = ”;

通过使用V$METRICGROUP视图,可以确定可以从AWR收集并跟踪的指标,频率以及时间段。这些信息有助于完成真实工作负载监视,进而对改进数据库性能和设计更有效的数据库结构提供支持。

官方英文解释

V$METRICGROUP displays information about the metric group for each of the four major Replication components: capture, propagation, apply, and queue.

Column Datatype Description

GROUP_ID

NUMBER

Internal ID associated with each group

NAME

VARCHAR2(64)

External name of the group

INTERVAL_SIZE

NUMBER

How often to collect statistics

MAX_INTERVAL

NUMBER

Total number of intervals over which statistics should be collected

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$METRICGROUP 官方解释,作用,如何使用详细说明