表空間查詢資訊
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. 下面這條語句檢視所有的大小。
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
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29654823/viewspace-1386364/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- oracle表空間查詢Oracle
- 表空間大小查詢
- 表空間查詢和管理
- 表空間相關查詢
- 水煮orale22——查詢表空間使用資訊以及表空間中的每個資料檔案資訊
- oracle 表空間,臨時表空間使用率查詢Oracle
- oracle查詢表空間的空間佔用情況Oracle
- 表空間使用量查詢
- 查詢表空間使用情況
- Oracle查詢表佔磁碟空間大小及移動表空間Oracle
- 臨時表空間的空間使用情況查詢
- oracle表空間使用率查詢Oracle
- Oracle 表空間查詢相關sqlOracleSQL
- Oracle查詢表空間使用情況Oracle
- 查詢表空間的使用率
- 臨時表空間和回滾表空間使用率查詢
- 查詢表空間已使用空間和空閒空間的簡單檢視
- ORACLE查詢所有表空間使用情況Oracle
- 查詢表空間中的extent數量
- 查詢表空間是否具備自動擴充套件空間套件
- Oracle 查詢表大小以及表空間使用率Oracle
- 查詢表資訊
- Oracle查詢表空間的每日增長量Oracle
- 查詢表空間使用情況的指令碼指令碼
- mysql 資料庫或者表空間使用查詢MySql資料庫
- 查詢使用表空間的TABLE,INDEX,INDEX SUBPARTITIONIndex
- 有關表空間查詢的sql指令碼SQL指令碼
- 查詢表空間的大小和使用率
- Oracle下查詢臨時表空間佔用率Oracle
- 查詢表的大小及表空間的使用情況
- mysql 查詢undo空間MySql
- 空間修改及查詢
- 達夢資料庫表空間等空間大小查詢方法總結資料庫
- 臨時表空間被佔滿的原因查詢
- 表空間使用情況查詢慢的處理
- Oracle 表空間利用率及物件大小查詢Oracle物件
- Oracle查詢表空間使用情況(經典篇)Oracle
- oracle 查詢表空間使用率的語句Oracle