alter system archive log current
I've got the following backup script:
rman target / <<EOF
@/home/oracle/rmanbackup.config;
backup incremental level=1 database format='%d_%U_dbf' tag='${bkup_tag}_dbf';
sql 'alter system archive log current';
backup archivelog all format='%d_%U_arc' tag='${bkup_tag}_arc';
backup spfile format='%d_%U_spf' tag='${bkup_tag}_spf';
backup current controlfile format='%d_%U_ctl' tag='${bkup_tag}_ctl';
delete noprompt archivelog all completed before 'sysdate-8' backed up 5 times
to device type disk;
exit
EOF
the rmanbackup.config appears to be running in that i get the messages: