Good morning all. I have yet another RMAN 'opportunity'.

We currently do a full database backup each night. At the end of our script we backup our archive logs. We do not use a recovery catalog. Oracle 8.0.6 & AIX 4.3.2

run {
allocate channel d1 type disk;
backup
format "/oraback/db_back%s_$DATE"
(database);
sql 'alter system archive log current';
backup
filesperset 1
format "/oraback/arch_back%s_$DATE"
(archivelog all delete input);

We ran into some problems last week where we did some database maintenance and did not turn the archive logs off. The archive log directory filled up and we inadvertantly deleted 56 archive logs. Now, my RMAN will not archive the new logs out of the directory. We get these errors:

RMAN-00569: ================error message stack follows================
RMAN-03002: failure during compilation of command
RMAN-03013: command type: backup
RMAN-06089: archived log /oracle/archdest/arch.log1_710.dbf not found or out of
sync with catalog


How can I get RMAN past this?
Thanks in advance for your help.
DJ