Recover Database Error [message #544584] |
Wed, 22 February 2012 12:44 |
|
SPenn
Messages: 6 Registered: February 2012
|
Junior Member |
|
|
I searched this website for my current error message but to no avail. Please assist if you can.
D:\DBA>set o
ORACLE_HOME=D:\oracle\product\10.2.0\db
ORACLE_SID=SIRSTEST
oraenv=oraenv
OS=Windows_NT
D:\DBA>sqlplus /nolog
SQL*Plus: Release 10.2.0.4.0 - Production on Wed Feb 22 13:14:41 2012
Copyright (c) 1982, 2007, Oracle. All Rights Reserved.
SQL> exit
D:\DBA>rman
Recovery Manager: Release 10.2.0.4.0 - Production on Wed Feb 22 13:14:50 2012
Copyright (c) 1982, 2007, Oracle. All rights reserved.
RMAN> connect target /
connected to target database: SIRSTEST (DBID=4173358074, not open)
RMAN> startup mount;
database is already started
RMAN> recover database;
Starting recover at 22-FEB-12
using target database control file instead of recovery catalog
allocated channel: ORA_DISK_1
channel ORA_DISK_1: sid=154 devtype=DISK
starting media recovery
media recovery failed
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03002: failure of recover command at 02/22/2012 13:15:28
ORA-03114: not connected to ORACLE
RMAN-11003: failure during parse/execution of SQL statement: alter database recover if needed
start
ORA-01041: internal error. hostdef extension doesn't exist
|
|
|
|
|
|
|
|
Re: Recover Database Error [message #544914 is a reply to message #544598] |
Fri, 24 February 2012 13:34 |
|
SPenn
Messages: 6 Registered: February 2012
|
Junior Member |
|
|
My control files were out of synchronization and the following resolved it:
1. restore controlfile from 'F:\location of RMAN backup of controfile';
2. alter database mount;
3. catalog start with 'F:\location of archivelogs';
4. run {set until logseq = 9328 thread = 1; recover database};
9328 is the next loqseq after the existing archivelogs
[Updated on: Fri, 24 February 2012 13:53] Report message to a moderator
|
|
|
|
|
|