Get the size of a table

Oracle Database Administration
Post Reply
User avatar
jimb
Site Admin
Posts: 6146
Joined: Thu Jan 19, 2012 1:10 pm
Location: New Delhi, India
Contact:

Get the size of a table

Post by jimb »

SELECT owner,
segment_name,
segment_type,
tablespace_name,
SUM(bytes) / 1024 / 1024 "MB Size"
FROM dba_segments
GROUP BY owner,
segment_name,
segment_type,
tablespace_name
ORDER BY 5 DESC;
Oracle Database Administration Forums
http://www.oracle-forums.com/
xaeresis
Posts: 196117
Joined: Wed Oct 04, 2023 2:39 pm

Re: Get the size of a table

Post by xaeresis »

xaeresis
Posts: 196117
Joined: Wed Oct 04, 2023 2:39 pm

Re: Get the size of a table

Post by xaeresis »

Post Reply