【轉】查詢表空間中的資料檔案利用率的sql

msdnchina發表於2011-08-01

select
b.file_name "物理檔名",
b.tablespace_name "表空間",
b.bytes/1024/1024 "大小M",
(b.bytes-sum(nvl(a.bytes,0)))/1024/1024 "已使用M",
substr((b.bytes-sum(nvl(a.bytes,0)))/(b.bytes)*100,1,5) "利用率"
from dba_free_space a,dba_data_files b
where a.file_id=b.file_id
group by b.tablespace_name,b.file_name,b.bytes
order by b.tablespace_name[@more@]

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/161195/viewspace-1053302/,如需轉載,請註明出處,否則將追究法律責任。

相關文章