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

本站中文解释

视图

V$SEGSTAT_NAME视图是Oracle数据库的动态性能视图,用于报告数据库中的段统计信息;它列出SEGMENT ID 和统计名字,以及报告每个统计名字当前的值以及值的总计。它以段名,段类型的形式报告当前的段统计信息,其中包括可用内存块数量,使用次数,使用时间,等等。

这个视图通常用来监控段级别的性能,查询它以查看一个特定段最大可用内存块数量,段使用次数,使用累计时间等数据。

使用V$SEGSTAT_NAME视图,首先需要使用以下语句查询需要监控的段:

SELECT
segment_name,
segment_type
FROM
V$SEGMENT_NAME ;

然后,可以使用包含SEGMENT NAME 和 SEGMENT TYPE 的结果构建下列查询来查看数据库中相关段的统计信息:

SELECT
segment_name,
statistic#,
statistic_name,
value,
statistic#,
FROM
V$SEGSTAT_NAME
WHERE
segment_name = ”
AND segment_type = ”;

其中, 和 是查询语句中查询出的段名称和段类型,分别用于替换V$SEGSTAT_NAME视图中值。

官方英文解释

V$SEGSTAT_NAME displays information about segment-level statistics properties.

Column Datatype Description

STATISTIC#

NUMBER

Statistic number

NAME

VARCHAR2(64)

Name of the statistic

SAMPLED

VARCHAR2(3)

Indicates whether the statistic was collected by sampling (YES) or not (NO)

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