欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

计算表空间使用脚本 博客分类: oracle 表空间 

程序员文章站 2024-02-18 22:36:10
...

计算表空间使用率脚本 

select a.tablespace_name,100*round((a.sum1 - b.free1)/a.sum1,4) tbs_pct from 
(
select tablespace_name,sum(bytes) sum1 from dba_data_files group by tablespace_name
) a,
(
select tablespace_name,sum(bytes) free1 from dba_free_space group by tablespace_name
) b
where a.tablespace_name=b.tablespace_name
order by tbs_pct desc

转——http://blog.itpub.net/4227/viewspace-1060516/

相关标签: 表空间