檢視Oracle的表空間的使用情況
轉自網路,供大家分享!
1. 檢視所有表空間大小
SQL> select tablespace_name,sum(bytes)/1024/1024 from dba_data_files
2 group by tablespace_name;
2. 檢視空閒的表空間大小
SQL> select tablespace_name,sum(bytes)/1024/1024 from dba_free_space
2 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;
4. 下面這條語句檢視所有segment的大小。
Select Segment_Name,Sum(bytes)/1024/1024 From User_Extents Group By Segment_Name
注意查詢的結果都是以M為單位
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/27009266/viewspace-745150/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 檢視oracle表空間使用情況Oracle
- 檢視SQL SERVER表的空間使用情況SQLServer
- oracle 檢視錶空間使用情況Oracle
- 檢視SQL SERVER表的空間使用情況(續)SQLServer
- sql檢視所有表空間使用情況SQL
- 查詢表空間使用情況的簡單檢視
- 檢視oracle資料庫表空間使用情況 非常慢!Oracle資料庫
- 檢視空間使用情況的指令碼指令碼
- oracle查詢表空間的空間佔用情況Oracle
- Oracle 檢查表空間使用情況Oracle
- oracle表及表空間使用情況Oracle
- Oracle檢視物件空間使用情況show_spaceOracle物件
- oracle檢視錶空間使用情況及某表是否被鎖的問題Oracle
- Oracle檢視使用者預設表空間使用情況的sql語句OracleSQL
- Oracle 檢視錶空間的大小及使用情況sql語句OracleSQL
- Oracle undo 表空間使用情況分析Oracle
- Oracle查詢表空間使用情況Oracle
- ORACLE查詢所有表空間使用情況Oracle
- 檢視mysql資料庫空間使用情況MySql資料庫
- Oracle 索引的使用情況檢視Oracle索引
- 【Oracle九大效能檢視】之8.v$sort_usage temp表空間的使用情況Oracle
- 臨時表空間的空間使用情況查詢
- 指令碼實現檢視錶空間使用情況指令碼
- Oracle - 表空間使用情況及相關字典Oracle
- 通過shell指令碼檢視資料庫表空間使用情況指令碼資料庫
- 透過shell指令碼檢視資料庫表空間使用情況指令碼資料庫
- 查詢表空間使用情況
- oracle表空間檢視Oracle
- 查詢表的大小及表空間的使用情況
- 華納雲:如何檢視Linux硬碟空間使用情況Linux硬碟
- Win10怎麼檢視磁碟空間使用情況?Win10
- 查詢表空間使用情況的指令碼指令碼
- Oracle查詢表空間使用情況(經典篇)Oracle
- 檢視ORACLE中表、表空間的大小Oracle
- 檢視系統中磁碟(加磁碟陣列)空間的使用情況陣列
- 通過 dbms_space.space_usage 檢視objects 的空間使用情況Object
- 檢視oracle臨時表空間佔用率的檢視Oracle
- oracle10g表空間使用情況快速查詢Oracle