SQL QUERY TO FIND TOP CONTRIBUTORS OF SYSAUX OCCUPANTS

SQL QUERY TO FIND TOP CONTRIBUTORS OF SYSAUX OCCUPANTS

This query can be used to identify the top occupants in sysaux

col OCCUPANT_NAME for a20
col OCCUPANT_DESC for a40
select *
            from
(
select OCCUPANT_NAME,
            OCCUPANT_DESC,
             SPACE_USAGE_KBYTES/1048576 OCCUPIED_MB
from
v$sysaux_occupants
order by 3 desc
)
where rownum < 6;

Find the top segments lying on sysaux

col SEGMENT_NAME for a20
select * from
(select segment_name,
             bytes/1073741824 GB,
             segment_type
from
dba_segments
where tablespace_name='SYSAUX'
order by 2 desc)
where rownum < 6;

Leave a Reply

%d bloggers like this: