select segment_name,tablespace_name,sum(bytes/(1024*1024)) "Table Size in MB"
from user_segments
where tablespace_name=''
group by segment_name,tablespace_name
order by sum(bytes/(1024*1024)) desc

This query would help u in finding the Segment Sizes