測試dbms_space包顯示不同物件的空間使用情況
###測試dbms_space.space_usage檢視不同segment的空間使用情況,詳細用法請檢視官方手冊
SQL> r
1 declare
2 unf number;
3 unfb number;
4 fs1 number;
5 fs1b number;
6 fs2 number;
7 fs2b number;
8 fs3 number;
9 fs3b number;
10 fs4 number;
11 fs4b number;
12 full number;
13 fullb number;
14 begin
15 dbms_space.space_usage('SCOTT','T_ONLY','TABLE',unf,unfb,fs1,fs1b,fs2,fs2b,fs3,fs3b,fs4,fs4b,full,fullb);
16 dbms_output.put_line('unformatted_blocks '||unf);
17 dbms_output.put_line('unformatted_bytes '||unfb);
18 dbms_output.put_line('Number of blocks that has at least 0 to 25% free space '||fs1);
19 dbms_output.put_line('Number of bytes that has at least 0 to 25% free space '||fs1b);
20 dbms_output.put_line(fs2||' '||fs3||' '||fs4||' '||full);
21* end;
unformatted_blocks 0
unformatted_bytes 0
Number of blocks that has at least 0 to 25% free space 0
Number of bytes that has at least 0 to 25% free space 0
0 0 0 11889
##這裡的fs1是指具備0-25%以內的空閒空間未使用的塊個數,其它fs同理,full是具備塊完全使用的塊個數
###下列輸入列為dbms_space.unused_space包
total_blocks
Returns total number of blocks in the segment. ##segment的塊數
total_bytes
Returns total number of blocks in the segment, in bytes.##segment的bytes數
unused_blocks
Returns number of blocks which are not used. ##未使用的block數
unused_bytes
Returns, in bytes, number of blocks which are not used.##對應上列
last_used_extent_ file_id
Returns the file ID of the last extent which contains data.##包括資料的最後一個extent所對應的file_id
last_used_extent_ block_id
Returns the starting block ID of the last extent which contains data.###包括資料的最後一個extent的開始block id
last_used_block
Returns the last block within this extent which contains data.###包括資料的extent的最後一個block
partition_name
Partition name of the segment to be analyzed.
This is only used for partitioned tables; the name of subpartition should be used when partitioning is compose.
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/9240380/viewspace-672047/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Oracle檢視物件空間使用情況show_spaceOracle物件
- oracle查詢表空間的空間佔用情況Oracle
- 臨時表空間的空間使用情況查詢
- 查詢表空間使用情況
- Oracle 檢查表空間使用情況Oracle
- 檢視空間使用情況的指令碼指令碼
- oracle 檢視錶空間使用情況Oracle
- Oracle undo 表空間使用情況分析Oracle
- Oracle查詢表空間使用情況Oracle
- oracle表及表空間使用情況Oracle
- 檢視oracle表空間使用情況Oracle
- 檢視Oracle的表空間的使用情況Oracle
- 查詢表空間使用情況的指令碼指令碼
- 檢視SQL SERVER表的空間使用情況SQLServer
- sql檢視所有表空間使用情況SQL
- ORACLE查詢所有表空間使用情況Oracle
- 檢查表空間、資料檔案、OS空間使用情況的指令碼指令碼
- CentOS 系統的磁碟空間佔用情況查詢CentOS
- 表空間使用情況查詢慢的處理
- 檢視SQL SERVER表的空間使用情況(續)SQLServer
- 查詢表的大小及表空間的使用情況
- Oracle - 表空間使用情況及相關字典Oracle
- ORCLE中ASM磁碟空間使用情況查詢ASM
- Oracle 查詢各表空間使用情況--完善篇Oracle
- 檢視mysql資料庫空間使用情況MySql資料庫
- 查詢表空間使用情況的簡單檢視
- dbms_space 評估儲存空間
- 指令碼實現檢視錶空間使用情況指令碼
- Oracle查詢表空間使用情況(經典篇)Oracle
- 華納雲:如何檢視Linux硬碟空間使用情況Linux硬碟
- Win10怎麼檢視磁碟空間使用情況?Win10
- oracle10g表空間使用情況快速查詢Oracle
- Oracle 檢視錶空間的大小及使用情況sql語句OracleSQL
- dbms_space(分析段增長和空間的需求)
- 顯示當前排序空間的SQL排序SQL
- 檢視oracle資料庫表空間使用情況 非常慢!Oracle資料庫
- 查詢sqlserver資料庫及各表格空間利用情況SQLServer資料庫
- 檢視系統中磁碟(加磁碟陣列)空間的使用情況陣列