Oracle 视图 DBA_TABLESPACE_USAGE_METRICS 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图DBA_TABLESPACE_USAGE_METRICS用来收集各个表空间的使用情况,可以根据它来分析表空间的使用状况。
它返回几个字段,它们分别描述表空间的使用情况,如表空间的用户空间百分比(TABLESPACE_USED_PERCENT)、最大可用空间(MAX_SPACE_AVAILABLE)、已分配空间(ALLOCATED_SPACE)以及可选参数PERCENT_SPACE_RECLAIMABLE(可回收空间百分比)等等。
使用方法:
可以使用以下查询查看DBA_TABLESPACE_USAGE_METRICS中的信息。
SELECT TABLESPACE_NAME,
TABLESPACE_USED_PERCENT,
MAX_SPACE_AVAILABLE,
ALLOCATED_SPACE,
PERCENT_SPACE_RECLAIMABLE
FROM DBA_TABLESPACE_USAGE_METRICS;
官方英文解释
DBA_TABLESPACE_USAGE_METRICS
describes tablespace usage metrics for all types of tablespaces, including permanent, temporary, and undo tablespaces.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
Tablespace name |
|
|
|
Total space consumed by the tablespace, in database blocks For undo tablespaces, the value of this column includes space consumed by both expired and unexpired undo segments. |
|
|
|
Tablespace size, in database blocks
|
|
|
|
Percentage of used space, as a function of the maximum possible tablespace size |