Oracle 表空間利用率及物件大小查詢
1. 檢視所有表空間大小
SQL> select tablespace_name,sum(bytes)/1024/1024 M from dba_data_files group by tablespace_name;
2. 已經使用的表空間大小
SQL> select tablespace_name,sum(bytes)/1024/1024 M from dba_free_space group by tablespace_name;
SQL> select tablespace_name,sum(bytes)/1024/1024 M from dba_free_space group by tablespace_name;
3. 所以使用空間可以這樣計算
select a.tablespace_name,total,free,total-free used from
( select tablespace_name,sum(bytes)/1024/1024 total from dba_data_files
group by tablespace_name) a,
( select tablespace_name,sum(bytes)/1024/1024 free from dba_free_space
group by tablespace_name) b
where a.tablespace_name=b.tablespace_name;
( select tablespace_name,sum(bytes)/1024/1024 total from dba_data_files
group by tablespace_name) a,
( select tablespace_name,sum(bytes)/1024/1024 free from dba_free_space
group by tablespace_name) b
where a.tablespace_name=b.tablespace_name;
4. 下面這條語句檢視所有segment的大小。
Select Segment_Name,Sum(bytes)/1024/1024 From User_Extents Group By Segment_Name
5. 還有在命令列情況下如何將結果放到一個檔案裡。
SQL> spool out.txt
SQL> select * from v$database;
SQL> spool off
SQL> spool out.txt
SQL> select * from v$database;
SQL> spool off
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/20674423/viewspace-720404/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Oracle查詢表佔磁碟空間大小及移動表空間Oracle
- 表空間大小查詢
- Oracle 查詢表大小以及表空間使用率Oracle
- 查詢表的大小及表空間的使用情況
- oracle表空間查詢Oracle
- oracle sql 表空間利用率OracleSQL
- 查詢表空間的大小和使用率
- oracle查詢表空間的空間佔用情況Oracle
- oracle 表空間,臨時表空間使用率查詢Oracle
- oracle表空間使用率查詢Oracle
- Oracle 表空間查詢相關sqlOracleSQL
- Oracle查詢表空間使用情況Oracle
- 查詢oracle 表的大小和表的建立時間Oracle
- 達夢資料庫表空間等空間大小查詢方法總結資料庫
- 查詢表空間容量時顯示大小為空的問題
- 表空間查詢資訊
- 空間修改及查詢
- ORACLE查詢所有表空間使用情況Oracle
- 【轉】查詢表空間中的資料檔案利用率的sqlSQL
- Oracle根據表名查詢表空間及資料檔案的地址Oracle
- Oracle查詢表空間的每日增長量Oracle
- Oracle下查詢臨時表空間佔用率Oracle
- 表空間查詢和管理
- 表空間相關查詢
- 怎麼檢視oracle表空間,剩餘大小,表空間利用Oracle
- Oracle查詢表空間使用情況(經典篇)Oracle
- oracle 查詢表空間使用率的語句Oracle
- 表空間使用量查詢
- 查詢表空間使用情況
- 檢視ORACLE中表、表空間的大小Oracle
- 【SQL】查詢及修改資料庫預設表空間SQL資料庫
- oracle檢查 小表空間Oracle
- 臨時表空間的空間使用情況查詢
- 關於oracle的空間查詢Oracle
- Oracle空間查詢 ORA-28595Oracle
- oracle 剩餘表空間查詢慢,解決辦法Oracle
- 查詢數oracle據庫表空間使用率sqlOracleSQL
- 【TABLESPACE】Oracle資料庫預設永久表空間的查詢及刪除方法Oracle資料庫