Sample error:

SQL> startup
ORACLE instance started.

Total System Global Area 285212672 bytes
Fixed Size 1321368 bytes
Variable Size 153605736 bytes
Database Buffers 130023424 bytes
Redo Buffers 262144 bytes
ORA-00214: controlfile '/u01/app/oracle/oradata/[SID]/control01.ctl' version
774562 inconsistent with file '/u01/app/oracle/oradata/[SID]/control03.ctl'
version 774558

Solution

get a backup of the control03.ctl

$ cp /u01/app/oracle/oradata/[SID]/control03.ctl /u01/app/oracle/oradata/[SID]/control03_bak.ctl

Replace control file

cp /u01/app/oracle/oradata/[SID]/control01.ctl /u01/app/oracle/oradata/[SID]/control03.ctl

output:
cp: overwrite `/u01/app/oracle/oradata/[SID]/control03.ctl'? y

alter database mount;

recover database;

alter database open;

--本篇文章参考自http://www.easywebtech.com/oracle/ORA-00214controlfile.phphttp://blog.csdn.net/photnman/article/details/137572

posted on 2014-08-14 17:23  雅冰石  阅读(2128)  评论(0编辑  收藏  举报