Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Remove archive log files in a production system
You only need the archives that have been generated since your last
full backup.
Also, you're better off using the Unix "find" command to delete files over a certain age.
e.g.
cd <archive_dir>
find . -name *.arc -type f -ctime +3 -exec rm {} \;
This will delete files over three days old.
HTH Received on Thu Oct 20 2005 - 05:31:43 CDT
![]() |
![]() |