How to retrieve lost control file
How to retrieve lost control file ORA-00210: cannot open the specified control file To simulate the situation of a lost control file or disk failure, I deleted a control file while the Oracle Database was running. SQL> alter database datafile '/u02/app/oracle/oradata/mynewdb/users01.dbf' resize 512M; Database altered. SQL> ! rm -f /u02/app/oracle/oradata/mynewdb/control01.ctl Then I shutdown the database. SQL> shutdown immediate; Database closed. ORA-00210: cannot open the specified control file ORA-00202: control file: '/u02/app/oracle/oradata/mynewdb/control01.ctl' ORA-27041: unable to open file Linux Error: 2: No such file or directory Additional information: 3 Then I start the database up. SQL> startup ORA-01081: cannot start already-running ORACLE - shut it down first SQL> select open_mode from v$database; select open_mode from v$database ...
