日期:2014-05-17 浏览次数:20940 次
--表空间使用情况
select
b.file_id "文件ID号",
b.tablespace_name "表空间名",
b.bytes/1024/1024
------解决方案--------------------
'M' "字节数",
(b.bytes-sum(nvl(a.bytes,0)))/1024/1024
------解决方案--------------------
'M' "已使用",
sum(nvl(a.bytes,0))/1024/1024
------解决方案--------------------
'M' "剩余空间",
100 - sum(nvl(a.bytes,0))/(b.bytes)*100 "占用百分比"
from dba_free_space a,dba_data_files b
where a.file_id=b.file_id
group by b.tablespace_name,b.file_id,b.bytes
order by b.file_id;