Basically the database is looking for redo information that it can't find.
I have had luck pointing it to the online redo files. You can try the first example and see if it finds what it needs. You can also try the first example but specify each online redo file.
Code:
recover standby database using backup controlfile until cancel;
AUTO
Once you have tried the above you can try the basic command again but with the cancel keyword, which cancel's the recovery.
It looks like you will need to open with reset logs. You may want to do a new backup of the database once you get everything running.
Code:
recover standby database using backup controlfile until cancel;
CANCEL
ALTER DATABASE OPEN RESETLOGS;
Finally, I have worked with SQL Server 2000, and I can tell you that Oracle is a lot different, Especially dealing with recovery issues.
Good Luck!!!
this space intentionally left blank
Bookmarks