Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Hot Standby help

Status
Not open for further replies.

tm88gt

MIS
Feb 15, 2003
23
0
0
US
I'm using oracle 8.1.6 on Sun Solaris8. I'm tryin to set up a hot standby database server, but it seems as if my standby server is "hung".

I started the standby instance (no mount).....mounted the standby database.....and issued the recovery command (recover managed standby database).....I did all of this in sqlplus (if that makes a difference)

The v$log_history on both servers is the same...however, my sqlplus screen on the standby server still looks like it's trying to recover something, and the alert log on the standby server shows:


ALTER DATABASE RECOVER managed standby database
Mon Aug 25 18:55:47 2003
Media Recovery Start: Managed Standby Recovery
Media Recovery Log
Media Recovery Waiting for thread 1 seq# 11


Thread 1 seq# 11 isn't available yet on the primary......why is the starndby trying to recover it?????
 
Hi.
Thats the intended behavior of hot standby DBs:
Hot standby tries to recover forever unless you
* cancle it:
ALTER DATABASE RECOVER MANAGED STANDBY DATABASE CANCEL IMMEDIATE;
* make the standby DB the active one (disaster on primary DB):
ALTER DATABASE ACTIVATE STANDBY DATABASE;
* put DB in read only mode:
ALTER DATABASE OPEN READ ONLY;

Stefan
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top