在oracle中,可以利用「select round(sum(BYTES)/1024/1024,2)||'M' from dba_segments where segment_name='表名'」語句查詢表的大小。
本教學操作環境: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中文網其他相關文章!