oracle00205报错,[Oracle] 数据库启动失败报错 ORA-00205: error in identifying control file

有同事问我,他的数据库启动失败,报错如下:

ORA-00205: error in identifying control file, check alert log for more info

这种报错,立刻可以想到的是,控制文件损坏,或者控制文件不存在

我查看了控制文件是存在的,但是控制文件的路径有点奇怪,一个在

/home/oracle/product/oradata/orcl/control01.ctl

另外一个在闪回目录下

于是我创建了一个pfile /home/oracle/zhu.ora

然后修改了里/home/oracle/zhu.ora关于控制文件的指定,只指定一个控制文件,如下

*.control_files='/home/oracle/product/oradata/orcl/control01.ctl'

再尝试启动数据库

SQL>startup pfile='/home/oracle/zhu.ora'

依然报错ORA-00205: error in identifying control file, check alert log for more info

此时我查看了alert文件,发现如下报错信息

ORA-00210: cannot open the specified control file

ORA-00202: control file: '/home/oracle/product/oradata/orcl/control01.ctl'

ORA-27086: unable to lock file - already in use

这个表示控制文件已经被人打开

你可能感兴趣的:(oracle00205报错)