RMAN restore in RAC [message #321841] |
Wed, 21 May 2008 08:16 |
supportx2008
Messages: 13 Registered: May 2008
|
Junior Member |
|
|
We are running two nodes in Oracle RAC environment and try to use RMAN to do the restore.
Case 1
First, we try to stop both instance using sqlplus
SQLPLUS>shutdown immediate;
Then, we connect using RMAN
RMAN>connect target sys/manager@abc1
and receive error "listener does not currently know of service requested in connect descriptor"
Case 2
We also try to stop one instance in SQLPlus and then use RMAN to connect the other instance. Then, issue shutdown immediate under RMAN. After that, issue startup nomount. It then return "not connected"
Is there anything that I missed ??
Thanks !
|
|
|
|
|
Re: RMAN restore in RAC [message #321878 is a reply to message #321841] |
Wed, 21 May 2008 12:38 |
skempins
Messages: 16 Registered: June 2005 Location: Florida
|
Junior Member |
|
|
You will also need an instance started in at least a nomount state. RMAN requires a target to connect.
Try this:
host$ export ORACLE_SID=abc1
host$ rman target /
RMAN> startup nomount;
|
|
|
|
Re: RMAN restore in RAC [message #321917 is a reply to message #321864] |
Wed, 21 May 2008 16:20 |
|
ebrian
Messages: 2794 Registered: April 2006
|
Senior Member |
|
|
anacedent wrote on Wed, 21 May 2008 11:44 | SQL> ALTER SYSTEM REGISTER;
|
Problem is OP is shutting down the database and it is un-registering itself from the listener. They won't be able to register unless they can at least startup nomount.
[Updated on: Wed, 21 May 2008 16:20] Report message to a moderator
|
|
|