oralce显示tablespace使用情况的sql

来源:互联网 发布:汽车配件加盟淘宝 编辑:程序博客网 时间:2024/05/04 22:22

--自己做个记号

select a.tablespace_name,a.bytes bytes_used,b.largest,round(((a.bytes - b.bytes)/a.bytes)*100,2) percent_used
from
(select tablespace_name ,sum(bytes) bytes from dba_data_files group by tablespace_name) a ,
(select tablespace_name,sum(bytes) bytes ,max(bytes) largest from dba_free_space group by tablespace_name) b
where a.tablespace_name = b.tablespace_name
order by ((a.bytes-b.bytes)) desc

原创粉丝点击