【转】在Oracle中查看各个表、表空间占用空间的大小

查看当前用户每个表占用空间的大小:
    select segment_name,sum(bytes)/1024/1024 from user_extents group by segment_name

查看每个表空间占用空间的大小:
    select tablespace_name,sum(bytes)/1024/1024 from dba_segments group by tablespace_name

来源:http://www.west263.com/www/info/27329-1.htm

原文地址:https://www.cnblogs.com/Peyton-for-2012/p/3161190.html