Calculating Table Size on Disk – Oracle

This is another no brainer, just here for reference.

SQL> SELECT segment_name tbl, sum(bytes)/(1024*1024) size_MB
     from dba_extents where segment_type='TABLE'
     and segment_name LIKE 'your big tables'
     GROUP BY segment_name;

Leave a Comment


NOTE - You can use these HTML tags and attributes:
<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>