Quantcast
Channel: EasyOraDBA
Viewing all articles
Browse latest Browse all 263

Largest Tables in Oracle

$
0
0

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 ;



Viewing all articles
Browse latest Browse all 263

Trending Articles