Monday, March 24, 2014

ORA-00600: internal error code, arguments: [kcratr_scan_lastbwr], [], [], [], [], [], [], [], [], [], [], []

Getting below error message post restarting server after abnormal power off.
ORA-00600: internal error code, arguments: [kcratr_scan_lastbwr], [], [], [],
[], [], [], [], [], [], [], []


SQL> startup;
ORA-32004: obsolete or deprecated parameter(s) specified for RDBMS instance
ORACLE instance started.

Total System Global Area 1319546880 bytes
Fixed Size                  2254904 bytes
Variable Size             671090632 bytes
Database Buffers          637534208 bytes
Redo Buffers                8667136 bytes
Database mounted.
ORA-00600: internal error code, arguments: [kcratr_scan_lastbwr], [], [], [],
[], [], [], [], [], [], [], []


To resolve followed below steps. post getting above error.

SQL> alter database recover database;

Database altered.

SQL> alter database open;

Database altered.

SQL> shutdown immediate;
Database closed.
Database dismounted.
ORACLE instance shut down.
SQL> startup;
ORA-32004: obsolete or deprecated parameter(s) specified for RDBMS instance
ORACLE instance started.

Total System Global Area 1319546880 bytes
Fixed Size                  2254904 bytes
Variable Size             671090632 bytes
Database Buffers          637534208 bytes
Redo Buffers                8667136 bytes
Database mounted.
Database opened.
SQL>

2 comments:

Anonymous said...

Hey friend...thanks a lot for your post. I could solve this problem using your instructions.

Anonymous said...

Thank you. After browsing many blog posts, this is the one that saved my database. Thank you very much!