I am trying to restore a backupset tag from tape to disk, because I need to recover on another location (development environment).
The datacenter backups are made using Netbackup and I dont have access to it.
So, I am trying to restore through RMAN.
This is what I did so far:
rman target / catalog "user_rcat/passs@rcat" << EOF
run {
ALLOCATE CHANNEL CH00 TYPE 'SBT_TAPE';
SEND 'NB_ORA_CLIENT=oracle-db,NB_ORA_SID=ORCL,NB_ORA_SERV=bkp-server';
BACKUP BACKUPSET FROM TAG 'LVL0_05012015' FORMAT '/rman_backup/LVL0_05012015_%U' TAG 'JAN-05';
RELEASE CHANNEL CH00;
}
EOF
But, it says that it doesnt match any backups.
When I list
list backup tag 'LVL0_05012015'
The backups are there...
Anyone?