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

本站中文解释

View
——
V$SEGMENT_STATISTICS

用途
————
V$SEGMENT_STATISTICS 视图提供深入了解表空间和数据文件中段使用情况的细节信息。可以查看索引、表、表空间和字典中物件使用情况。

使用方法
————
使用 V$SEGMENT_STATISTICS 视图可以查看存储在表空间中不同物件段类型的使用情况,包括:

– 表段
– 索引段
– 表空间段
– 字典段(固定表)

可用于识别用户空间使用上的问题,如表空间剩余空间少,字典临时表空间使用过多等等,以改善系统的效率和可用性。

示例
————
需要知道一个特定的表空间的哪些段占用的最多的存储空间数量,可以使用V$SEGMENT_STATISTICS视图:

SELECT OWNER, SEGMENT_NAME, BYTES
FROM V$SEGMENT_STATISTICS
WHERE TABLESPACE_NAME = ‘TBS_1’
ORDER BY BYTES DESC;

官方英文解释

V$SEGMENT_STATISTICS displays information about segment-level statistics.

Column Datatype Description

OWNER

VARCHAR2(128)

Owner of the object

OBJECT_NAME

VARCHAR2(128)

Name of the object

SUBOBJECT_NAME

VARCHAR2(128)

Name of the subobject

TABLESPACE_NAME

VARCHAR2(30)

Name of the table space to which the object belongs

TS#

NUMBER

Tablespace number

OBJ#

NUMBER

Dictionary object number of the object

DATAOBJ#

NUMBER

Data object number of the object

OBJECT_TYPE

VARCHAR2(18)

Type of the object

STATISTIC_NAME

VARCHAR2(64)

Name of the statistic

STATISTIC#

NUMBER

Statistic number

VALUE

NUMBER

Statistic value

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