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 of the object |
|
|
Name of the object |
|
|
Name of the subobject |
|
|
Name of the table space to which the object belongs |
|
|
Tablespace number |
|
|
Dictionary object number of the object |
|
|
Data object number of the object |
|
|
Type of the object |
|
|
Name of the statistic |
|
|
Statistic number |
|
|
Statistic value |
|
|
The ID of the container to which the data pertains. Possible values include:
|