首頁  >  文章  >  資料庫  >  oracle怎樣查詢表的大小

oracle怎樣查詢表的大小

WBOY
WBOY原創
2022-01-05 15:06:3731174瀏覽

在oracle中,可以利用「select round(sum(BYTES)/1024/1024,2)||'M' from dba_segments where segment_name='表名'」語句查詢表的大小。

oracle怎樣查詢表的大小

本教學操作環境:Windows10系統、Oracle 11g版、Dell G3電腦。

oracle怎麼查詢表的大小

有兩個意義的表大小。一種是分配給一個表的物理空間數量,而不管空間是否被使用。可以這樣查詢獲得位元組數:

select segment_name, bytes 
from user_segments 
where segment_type = 'TABLE';

   Select Segment_Name,Sum(bytes)/1024/1024 From User_Extents Group By Segment_Name

另一種表實際使用的空間。這樣查詢:

analyze table emp compute statistics; 
select num_rows * avg_row_len 
from user_tables 
where table_name = 'EMP';

查看每個表空間的大小

Select Tablespace_Name,Sum(bytes)/1024/1024 From Dba_Segments Group By Tablespace_Name

推薦教學:《Oracle教學

以上是oracle怎樣查詢表的大小的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn