Browse Community
Help
Log In
Responses(2)
Solutions(0)
Kleinenbroich
86 Posts
0
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:
RESTORE DATABASE;
RECOVER DATABASE;
alter database open resetlogs;
ble1
4 Operator
•
14.4K Posts
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)
Dell Support Resources
View All
Top
Kleinenbroich
86 Posts
0
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;
ble1
4 Operator
•
14.4K Posts
0
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)