Query to find out size of the 10 Largest Tables sitting inside an Oracle database
select segment_name as “Table Name” , round (bytes/1024/1024/1024) || ‘ GB’ as “Size” from user_segments where bytes > 1073741824 and rownum <= 10 order by bytes desc ;