Oracle 视图 DBA_HIST_TABLESPACE 官方解释,作用,如何使用详细说明
本站中文解释
_STAT
Oracle视图DBA_HIST_TABLESPACE_STAT存储有关表空间统计信息的历史数据。它记录了多年来表空间的容量变化和用户对空间的使用量情况。
该视图可用于查看某些时间段内表空间的使用情况。例如,可以查看最近1小时、最近一天、最近一个月、最近一段时间内表空间使用情况。DBA_HIST_TABLESPACE_STAT视图允许管理员监视表空间使用量情况以便及时计划扩展表空间的容量。
使用DBA_HIST_TABLESPACE_STAT视图的方法如下:
1.查看某个时间段内表空间的使用情况,可以使用以下SQL语句:
SELECT tablespace_name, used_space from DBA_HIST_TABLESPACE_STAT where snap_time >= ‘ ‘ and snap_time = ‘ ‘ and snap_time
官方英文解释
DBA_HIST_TABLESPACE
displays tablespace information contained in the Workload Repository.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
|
Database ID |
|
|
|
Tablespace number |
|
|
|
Tablespace name |
|
|
Tablespace contents:
|
|
|
|
Indicates whether the free and used space in the tablespace is managed using free lists ( |
|
|
|
Indicates whether the extents in the tablespace are dictionary managed ( |
|
|
|
Block size of the tablespace |
|
|
|
The database ID of the PDB for the sampled session |
|
|
|
The ID of the container that
|