oracle 查询数据库表空间大小和剩余空间
Posted N神3
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle 查询数据库表空间大小和剩余空间相关的知识,希望对你有一定的参考价值。
dba_data_files:数据库数据文件信息表。可以统计表空间大小(总空间大小)。
dba_free_space:可以统计剩余表空间大小。
增加表空间即向表空间增加数据文件,表空间大小就是数据文件总大小。
检查Oracle各个表空间的增长情况(各表空间使用率)
select A.tablespace_name,(1-(A.total)/B.total)*100 used_percent from (select tablespace_name,sum(bytes) total from dba_free_space group by tablespace_name) A, (select tablespace_name,sum(bytes) total from dba_data_files group by tablespace_name) B where A.tablespace_name=B.tablespace_name
以上是关于oracle 查询数据库表空间大小和剩余空间的主要内容,如果未能解决你的问题,请参考以下文章