February 1st, 2017 05:00

Hi,

I'm not really an Oracle expert, but can you try the following:

1.) Configure the channels:

rman target /

CONFIGURE CHANNEL 1 DEVICE TYPE ‘SBT_TAPE’ PARMS ‘ENV=(NSR_SERVER=darnetworker.alarkan.com, NSR_CLIENT=oratest, NSR_DATA_VOLUME_POOL=name_of_the_used_pool)’;

CONFIGURE CHANNEL 2 DEVICE TYPE ‘SBT_TAPE’ PARMS ‘ENV=(NSR_SERVER=darnetworker.alarkan.com, NSR_CLIENT=oratest, NSR_DATA_VOLUME_POOL=name_of_the_used_pool)’;

2.) The full Oracle database recovery is an offline recovery, Oracle must run in the so called “mount” mode: The database is mounted but not started:

sqlplus / as sysdba

startup mount;

3.) Start the recovery:

rman target /

RESTORE DATABASE;

RECOVER DATABASE;

alter database open resetlogs;

4 Operator

 • 

14.4K Posts

February 1st, 2017 05:00

Procedure itself looks ok to me.  The error you get is from RMAN stating it can't create datafile.  You can check if this is related to incarnations (see oracle - ORA-01180 when restoring the database - Database Administrators Stack Exchange)

No Events found!

Top