RMAN Oracle Streams
I have the following warning in the stream Health Report:
WARNING: There are 1210 archived logs ready to be purged from disk.
+ Use the following select to identify unneeded logfiles:
+ select name from dba_registered_archived_log where purgeable = "YES"
PL/SQL procedure successfully completed.
I am using RMAN for backing my database.
Script:
---------------
backup database plus archivelog;
backup archivelog all not backed up delete all input;
crosscheck backup;
delete obsolete;
----------
The archive logs is growing continuously.
How I could remove those unneeded archive logs?
Thanks.