ORA-00600: [2730], [331] after Switchover in New Standby Database
If you found errors in the log file as:-
Errors in file /data1/test/diag/diag/rdbms/art02/art02/trace/art02_ora_29254.trc (incident=8785):
ORA-00600: internal error code, arguments: [2730], [331], [1], [4], [110], [110], [512], [512], [], [], [], []
Incident details in: /data1/test/diag/diag/rdbms/art02/art02/incident/incdir_8785/art02_ora_29254_i8785.trc
RCA :- This happens due to Unmatched compatibility setup on the primary and the standby.The value of compatible parameter in primary and standby is different.
Solution :-
1. Change the value of the compatible parameter on standby
SQL> ALTER SYSTEM SET COMPATIBLE= <same as value of primary> SCOPE=SPFILE;
If you are using pfile then edit pfile and change the value of the parameter
*. COMPATIBLE= <same as value of primary>
2. Shutdown and Restart the standby database in mount stage
3. Restart Managed recovery process.
Errors in file /data1/test/diag/diag/rdbms/art02/art02/trace/art02_ora_29254.trc (incident=8785):
ORA-00600: internal error code, arguments: [2730], [331], [1], [4], [110], [110], [512], [512], [], [], [], []
Incident details in: /data1/test/diag/diag/rdbms/art02/art02/incident/incdir_8785/art02_ora_29254_i8785.trc
RCA :- This happens due to Unmatched compatibility setup on the primary and the standby.The value of compatible parameter in primary and standby is different.
Solution :-
1. Change the value of the compatible parameter on standby
SQL> ALTER SYSTEM SET COMPATIBLE= <same as value of primary> SCOPE=SPFILE;
If you are using pfile then edit pfile and change the value of the parameter
*. COMPATIBLE= <same as value of primary>
2. Shutdown and Restart the standby database in mount stage
3. Restart Managed recovery process.
Comments
Post a Comment