If you were only to identify what object type
in a certain tablespace then:
select distinct segment_type
from dba_segments
where tablespace_name='TABLESPACE_NAME';
The consumed size of your tablespace becomes lower
because you issues commands to optimize your objects
resulting your tablespace to consume less size where in
your object resides.
select segment_name, segment_type
from dba_segments
where tablespace_name = '...';
and :
select object_name, object_type
from dba_objects
where sysdate-created <2;
first one will give you all the segments in the tablespace you enter, and second one will give you the objects that were created less than 2 days ago, that way you can find out what filled your tablespace.
Bookmarks