ORACLE查詢所有表空間使用情況
select t.tablespace_name "表空間名稱",t.full_space "總的 M",(t.full_space-nvl(f.free_space,0)) "使用 M",f.free_space "剩餘 M",to_char(round((t.full_space-nvl(f.free_space,0))/t.full_space*100,1),'fm999990.99999')||'%' "使用率"from (select tablespace_name,round(sum(bytes)/(1024*1024),2) free_space from dba_free_space group by tablespace_name) f ,
(select tablespace_name,round(sum(bytes)/(1024*1024),2) full_space from dba_data_files group by tablespace_name) t where f.tablespace_name=t.tablespace_name(+)
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29065182/viewspace-1629541/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Oracle查詢表空間使用情況Oracle
- oracle查詢表空間的空間佔用情況Oracle
- 查詢表空間使用情況
- Oracle查詢表空間使用情況(經典篇)Oracle
- 臨時表空間的空間使用情況查詢
- 查詢表空間使用情況的指令碼指令碼
- Oracle 查詢各表空間使用情況--完善篇Oracle
- 查詢表的大小及表空間的使用情況
- 表空間使用情況查詢慢的處理
- sql檢視所有表空間使用情況SQL
- oracle表及表空間使用情況Oracle
- 查詢表空間使用情況的簡單檢視
- oracle10g表空間使用情況快速查詢Oracle
- Oracle undo 表空間使用情況分析Oracle
- 檢視oracle表空間使用情況Oracle
- Sqlserver查詢出所有表的大小使用情況SQLServer
- ORCLE中ASM磁碟空間使用情況查詢ASM
- CentOS 系統的磁碟空間佔用情況查詢CentOS
- oracle表空間查詢Oracle
- Oracle - 表空間使用情況及相關字典Oracle
- 檢視Oracle的表空間的使用情況Oracle
- Oracle 檢查表空間使用情況Oracle
- 查詢sqlserver資料庫及各表格空間利用情況SQLServer資料庫
- oracle 檢視錶空間使用情況Oracle
- Oracle 查詢各個 “表空間/資料檔案” 的空間使用比情況Oracle
- oracle 表空間,臨時表空間使用率查詢Oracle
- 檢視oracle資料庫表空間使用情況 非常慢!Oracle資料庫
- oracle表空間使用率查詢Oracle
- Oracle 表空間查詢相關sqlOracleSQL
- Oracle查詢表佔磁碟空間大小及移動表空間Oracle
- 檢視SQL SERVER表的空間使用情況SQLServer
- 表空間大小查詢
- 表空間查詢資訊
- 檢視SQL SERVER表的空間使用情況(續)SQLServer
- Oracle 查詢表大小以及表空間使用率Oracle
- 查詢Oracle資料檔案的使用情況Oracle
- oracle 查詢所有表的表名Oracle
- Oracle檢視物件空間使用情況show_spaceOracle物件