Re: Re: Restoring database
You do not needto restore your redo logs ( though that won't hurt if you restore them).
If your backup was done properly - I mean following an immediate or normal shutdown - then just run the following commands and Oracle will recreate the redologs :
alter database recover database until cancel;
Cancel;
alter database open resetlogs;
( as said by Nagarjuna, all the transactions in the online redo logs are flushed to datafiles, so they can be recreated empty )
If there is no solution, it is because there is no problem - Shadok -