ORA-00600: internal error code, arguments: [kcratr_scan_lastbwr], [], [], []
The Problem:
Oracle Database remains in mounted state. It can't be opened. If it is focibly opened it throws error (ora-00600) as shown below:
SQL> alter database open;
alter database open
*
ERROR at line 1:
ORA-00600: internal error code, arguments: [kcratr_scan_lastbwr], [], [], [],
[], [], [], [], [], [], [], []
SOLUTION:
Use the command- 'recover database' as shown below:
SQL> shutdown immediate
ORA-01109: database not open
Database dismounted.
ORACLE instance shut down.
SQL> startup mount
ORACLE instance started.
Total System Global Area 2.3517E+10 bytes
Fixed Size 2213456 bytes
Variable Size 1.4496E+10 bytes
Database Buffers 8858370048 bytes
Redo Buffers 160751616 bytes
Database mounted.
SQL> recover database;
Media recovery complete.
SQL> alter database open;
Database altered.
Oracle Database remains in mounted state. It can't be opened. If it is focibly opened it throws error (ora-00600) as shown below:
SQL> alter database open;
alter database open
*
ERROR at line 1:
ORA-00600: internal error code, arguments: [kcratr_scan_lastbwr], [], [], [],
[], [], [], [], [], [], [], []
SOLUTION:
Use the command- 'recover database' as shown below:
SQL> shutdown immediate
ORA-01109: database not open
Database dismounted.
ORACLE instance shut down.
SQL> startup mount
ORACLE instance started.
Total System Global Area 2.3517E+10 bytes
Fixed Size 2213456 bytes
Variable Size 1.4496E+10 bytes
Database Buffers 8858370048 bytes
Redo Buffers 160751616 bytes
Database mounted.
SQL> recover database;
Media recovery complete.
SQL> alter database open;
Database altered.