Rman backups not deleting from tape
run {
allocate channel ch1 type 'sbt_tape' parms 'ENV=(TDPO_OPTFILE=/home/oracle/rman/tdpo.djjsp1.opt)' CONNECT sys/xxxxxx@djjsp1;
sql 'alter system switch logfile';
sql 'alter database backup controlfile to trace';
backup recovery area
format 'df_%t_%s_%p';
delete force noprompt obsolete;
release channel ch1;
}
Any clues or help would be appreciated.