Oracle 表空間利用率及物件大小查詢

wuweilong發表於2012-04-05
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;
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
5. 還有在命令列情況下如何將結果放到一個檔案裡。
SQL> spool out.txt
SQL> select * from v$database;
SQL> spool off

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/20674423/viewspace-720404/,如需轉載,請註明出處,否則將追究法律責任。

相關文章