ORA-00201:control file version 11.2.0.4.0 incompatible with ORACLE version 11.2.0.0.0 ORA-00202:control file : '/oradata/gabsjsb/control01.ctl'

故障描述:

由于数据库所在服务器内核崩溃,经过几个小时的修复也没能挽救回来,只能将数据目录挂载至其他地方然后尝试把数据库拉起来。

结果在启动时出现如下报错

SQL> startup pfile='/home/oracle/initgabsjsb.ora';
ORA-00201:control file version 11.2.0.4.0 incompatible with ORACLE version 11.2.0.0.0 
ORA-00202:control file : '/oradata/gabsjsb/control01.ctl'

产生原因:

11.2.0.4数据库参数文件中如果不写明compatible参数,则默认为11.2.0.0.0,主要是手动创建pfile才会发生,正常创建的数据库基本不需要考虑这种问题

参数文件如下:

*.audit_file_dest='/oracle/admin/gabsjsb/adump'
*.control_files='/oradata/gabsjsb/control01.ctl','/oradata/gabsjsb/control02.ctl'
*.diagnostic_dest='/oracle'
*.db_name='gabsjsb'
*.dispatchers='PROTOCOL=TCP (SERVICE=gabsjsbXDB)'
*.compatible='11.2.0.4.0'
*.db_files=1000
*.processes=3000

 

posted @ 2022-04-01 09:05  小年青。  阅读(304)  评论(0编辑  收藏  举报