rman backup to disc then to tape
I'm tryin to send my rman backup first to disc and after that send 'the same last generated backup' to tape.
I'm using oracle docs example:
run{
backup database;
backu backupset all;
}
But the second statement (backupset all) is looking for a previous generated backup and not the backup generated by the statement above it (backup database)
Any ideas ?