oracle表空間查詢
set linesize 300
set pagesize 10000
col TABLESPACE_NAME for a30;
col PCT_FREE for a20;
col PCT_USED for a20;
col USED_MAX% for a20
select a.tablespace_name,
round(a.bytes_alloc / 1024 / 1024, 2) megs_alloc,
round(nvl(b.bytes_free, 0) / 1024 / 1024, 2) megs_free,
round((a.bytes_alloc - nvl(b.bytes_free, 0)) / 1024 / 1024, 2) megs_used,
round((nvl(b.bytes_free, 0) / a.bytes_alloc) * 100,2)||'%' Pct_Free,
100 - round((nvl(b.bytes_free, 0) / a.bytes_alloc) * 100,2)||'%' Pct_used,
round(maxbytes/1048576,2) Max,
round(round((a.bytes_alloc - nvl(b.bytes_free, 0)) / 1024 / 1024, 2) / round((case maxbytes when 0 then a.bytes_alloc else maxbytes end)/1048576,2) * 100,2) || '%' "USED_MAX%"
from ( select f.tablespace_name,
sum(f.bytes) bytes_alloc,
sum(decode(f.autoextensible, 'YES',f.maxbytes,'NO', f.bytes)) maxbytes
from dba_data_files f
group by tablespace_name) a,
( select f.tablespace_name,
sum(f.bytes) bytes_free
from dba_free_space f
group by tablespace_name) b
where a.tablespace_name = b.tablespace_name (+)
union all
select h.tablespace_name,
round(sum(h.bytes_free + h.bytes_used) / 1048576, 2) megs_alloc,
round(sum((h.bytes_free + h.bytes_used) - nvl(p.bytes_used, 0)) / 1048576, 2) megs_free,
round(sum(nvl(p.bytes_used, 0))/ 1048576, 2) megs_used,
round((sum((h.bytes_free + h.bytes_used) - nvl(p.bytes_used, 0)) / sum(h.bytes_used + h.bytes_free)) * 100,2)||'%' Pct_Free,
100 - round((sum((h.bytes_free + h.bytes_used) - nvl(p.bytes_used, 0)) / sum(h.bytes_used + h.bytes_free)) * 100,2)||'%' pct_used,
round(sum(f.maxbytes) / 1048576, 2) max,
round(round(sum(nvl(p.bytes_used, 0))/ 1048576, 2)/round(sum(case f.maxbytes when 0 then (h.bytes_free + h.bytes_used) else f.maxbytes end) / 1048576, 2) * 100,2)||'%' "USED_MAX%"
from sys.v_$TEMP_SPACE_HEADER h, sys.v_$Temp_extent_pool p, dba_temp_files f
where p.file_id(+) = h.file_id
and p.tablespace_name(+) = h.tablespace_name
and f.file_id = h.file_id
and f.tablespace_name = h.tablespace_name
group by h.tablespace_name
ORDER BY 1;
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/28572479/viewspace-2123969/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- oracle查詢表空間的空間佔用情況Oracle
- oracle 表空間,臨時表空間使用率查詢Oracle
- oracle表空間使用率查詢Oracle
- Oracle 表空間查詢相關sqlOracleSQL
- Oracle查詢表空間使用情況Oracle
- Oracle查詢表佔磁碟空間大小及移動表空間Oracle
- 表空間大小查詢
- 表空間查詢資訊
- ORACLE查詢所有表空間使用情況Oracle
- Oracle 查詢表大小以及表空間使用率Oracle
- Oracle查詢表空間的每日增長量Oracle
- Oracle下查詢臨時表空間佔用率Oracle
- 表空間查詢和管理
- 表空間相關查詢
- Oracle 表空間利用率及物件大小查詢Oracle物件
- Oracle查詢表空間使用情況(經典篇)Oracle
- oracle 查詢表空間使用率的語句Oracle
- 表空間使用量查詢
- 查詢表空間使用情況
- oracle檢查 小表空間Oracle
- 臨時表空間的空間使用情況查詢
- 關於oracle的空間查詢Oracle
- Oracle空間查詢 ORA-28595Oracle
- oracle 剩餘表空間查詢慢,解決辦法Oracle
- 查詢數oracle據庫表空間使用率sqlOracleSQL
- 查詢表空間的使用率
- 臨時表空間和回滾表空間使用率查詢
- Oracle 查詢各個 “表空間/資料檔案” 的空間使用比情況Oracle
- 查詢表空間已使用空間和空閒空間的簡單檢視
- 查詢表空間中的extent數量
- 查詢表空間是否具備自動擴充套件空間套件
- Oracle根據表名查詢表空間及資料檔案的地址Oracle
- 查詢表空間使用情況的指令碼指令碼
- mysql 資料庫或者表空間使用查詢MySql資料庫
- 查詢使用表空間的TABLE,INDEX,INDEX SUBPARTITIONIndex
- 有關表空間查詢的sql指令碼SQL指令碼
- 查詢表空間的大小和使用率
- 查詢表的大小及表空間的使用情況