查询表空间包含的对象及对象大小

SELECT t.owner, t.segment_name,SUM(bytes)/1024/1024 From dba_segments t 

WHERE t.tablespace_name = 'TBS_DEFAULT'

GROUP BY t.owner,t.segment_name

ORDER BY SUM(bytes) desc;


你可能感兴趣的:(查询表空间包含的对象及对象大小)