I am looking at the following link

http://download.oracle.com/docs/cd/B...1.htm#RCMRF149

And see this example (see below). If your restoring a control file from a backup dont you need to open the DB with resetlogs option since you will be out of sync. Is this documentation wrong or am I missing something?


RUN
{ # SET DBID is not necessary when connected to a recovery catalog
STARTUP FORCE NOMOUNT;
RESTORE CONTROLFILE;
ALTER DATABASE MOUNT;
}

When I issue this statement after the control files are restored I get the
following error:

SQL> alter database open RESETLOGS;
alter database open RESETLOGS
*
ERROR at line 1:
ORA-01194: file 1 needs more recovery to be consistent
ORA-01110: data file 1: '/oracle/data/aux/system01.dbf'


Can somebody explain what is missing in the above example for this work.

Thanks