quser_object_size.sql

undef tablespace_name
undef owner

select segment_name, bytes/1024/1024 “Size MB” from dba_segments
where owner= Upper(‘&&owner’)
and tablespace_name= Upper(‘&&tablespace_name’)
order by bytes asc;

Leave a comment