How to get oracle table occupied size
mafaizMay 27 2011 — edited May 27 2011Hi,
Actually my task is arrange to get an oracle table occupied size for a particular schema.
I have an query to get allocated table size,the query as follows
SELECT SEGMENT_NAME,sum (BYTES)/1024/1024 FROM user_SEGMENTS WHERE segment_type='TABLE' group by segment_name order by sum(bytes) desc;
But actually i need to get "how much space occupied for each table in that particular schema"
Thanks in advance...............