I got ” ORA-00201: control file version incompatible with ORACLE version ” error in Oracle database during Startup database.
ORA-00201: control file version incompatible with ORACLE version
Details of error are as follows.
ORA-00201: control file version 19.0.0.0.0 incompatible with ORACLE version 18.0.0.0.0
Error: ORA-00201 control file version %s incompatible with ORACLE version %s
---------------------------------------------------------------------------
Cause: The control file was created by incompatible software.
Action: Either restart with a compatible software release or use CREATE
CONTROLFILE to create a new control file that is compatible with this
release.
Versions 9.2, 10.1
Error: ORA-00201 controlfile version %s incompatible with ORACLE version %s
---------------------------------------------------------------------------
Cause: The controlfile was created by incompatible software.
Action: Either restart with a compatible software release or use CREATE
CONTROLFILE to create a new controlfile that is compatible with this
release.
control file version incompatible with ORACLE version
This ORA-00201 error is related with the Compatible version of Oracle instance and Controlfile Compatible.
To solve this error, set compatible parameter as follows then restart database.
SQL> alter system set compatible='19.0.0' scope=spfile sid='*';
SQL> shutdown immediate
SQL> startup
Or If your version is lower than 19 or 18, then set compatible parameter according to your database. If your Oracle version is 12c then you can set it 12 as follows.
alter system set compatible='12.0.0.0.0' scope=spfile;
Do you want to learn more details about RMAN, then Click this Link and read the articles.
RMAN Tutorial | Backup, Restore and Recovery Tutorials For Beginner Oracle DBA