Issues with Catalog start with [message #643644] |
Wed, 14 October 2015 15:45 ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
![](//www.gravatar.com/avatar/c953db5c6dbd95b304a73d448e50c7e8?s=64&d=mm&r=g) |
krish96
Messages: 74 Registered: October 2012
|
Member |
|
|
Hello Experts,
I am trying to restore the database ..
here's the log
================
RMAN> connect target *
connected to target database: test (DBID=2001100)
RMAN> connect catalog *
connected to recovery catalog database
RMAN> set echo on
echo set on
RMAN> **end-of-file**
RMAN> catalog start with '/location/database_bkp/';
catalog start with 'location/database_bkp/';
searching for all files that match the pattern location/database_bkp/
no files found to be unknown to the database
and physically the files are available on that location..
thanks in advance
|
|
|
|
|
|
|
|
|
|
Re: Issues with Catalog start with [message #643699 is a reply to message #643694] |
Thu, 15 October 2015 10:49 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) |
gazzag
Messages: 1119 Registered: November 2010 Location: Bedwas, UK
|
Senior Member |
|
|
I'm not sure what you're trying to achieve. What does the following yield?
RMAN> STARTUP NOMOUNT;
RMAN> RESTORE CONTROLFILE FROM AUTOBACKUP;
RMAN> ALTER DATABASE MOUNT;
RMAN> RESTORE DATABASE;
RMAN> RECOVER DATABASE;
RMAN> ALTER DATABASE OPEN RESETLOGS;
|
|
|