Resolved ORA-00600 internal error code, arguments:
in this blog, I have explained you how to resolve ORA-00600 error. ORA-00600 is the common error in oracle databases
oracle configurationintermediate
by OracleDba
17 views
in this blog, I have explained you how to resolve ORA-00600 error. ORA-00600 is the common error in oracle databases
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
oracle@dba>sqlplus / as sysdba
SQL*Plus: Release 19.0.0.0.0 Production on Sun Oct 31 14:17:41 2021
Copyright (c) 1982, 2019, Oracle. All rights reserved.
Connected to an idle instance.
SQL> startup
ORACLE instance started.
Total System Global Area 3307048960 bytes
Fixed Size         2180264 bytes
Variable Size      2046823256 bytes
Database Buffers     1241513984 bytes
Redo Buffers        16531456 bytes
Database mounted.
ORA-00600: internal error code, arguments: [kcratr_nab_less_than_odr], [1],
[210], [39496], [39684], [], [], [], [], [], [], []
SQL> shut immediate;
ORA-01109: database not open
Database dismounted.
ORACLE instance shut down.
SQL> startup mount
ORACLE instance started.
Total System Global Area 3307048960 bytes
Fixed Size         2180264 bytes
Variable Size      2046823256 bytes
Database Buffers     1241513984 bytes
Redo Buffers        16531456 bytes
Database mounted.
NAMEÂ Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â TYPEÂ Â Â Â VALUE
-------------------------------------------------------
control_files            string   /data/app/oracle/oradata/ORCL/control01.ctl,
/data/app/oracle/flash_recovery_area/ORCL/control02.ctl
SQL> select a.member,a.group#,b.status from v$logfile a ,v$log b where a.group#=b.group# and b.status=’CURRENT’
 2 ;
MEMBER
——————————————————————————–
  GROUP# STATUS
———- —————-
data/app/oracle/oradata/ORCL/redo03.log
     3 CURRENT
SQL> Shutdown abort ;
ORACLE instance shut down.
SQL> Startup mount ;
ORACLE instance started.
Total System Global Area 3307048960 bytes
Fixed Size         2180264 bytes
Variable Size      2046823256 bytes
Database Buffers     1241513984 bytes
Redo Buffers        16531456 bytes
Database mounted.
SQL> recover database using backup controlfile until cancel ;
ORA-00279: change 2737134 generated at 12/27/2017 12:21:37 needed for thread 1
ORA-00289: suggestion :
/data/app/oracle/oradata/ORCL/fast_recovery_area/arcivelog2018_01_03O1_MF_1_210_%U_.
ARC
ORA-00280: change 2737134 for thread 1 is in sequence #210
Specify log: {=suggested | filename | AUTO | CANCEL}
/data/app/oracle/oradata/ORCL/redo03.log
Log applied.
Media recovery complete.
SQL>
SQL> Alter database open resetlogs ;
Database altered.
SQL>
SQL>
SQL> shut immediate;
Database closed.
Database dismounted.
ORACLE instance shut down.
SQL> exit
Disconnected from Oracle Database 19cg Enterprise Edition Release 19.0.0.0.0 – 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
C:Userssan>sqlplus / as sysdba
SQL*Plus: Release 19.0.0.0.0 Production on Sun oct 31 15:00:41 2021
Copyright (c) 1982, 2019, Oracle. All rights reserved.
Connected to an idle instance.
SQL> startup
ORACLE instance started.
Total System Global Area 3307048960 bytes
Fixed Size         2180264 bytes
Variable Size      2046823256 bytes
Database Buffers     1241513984 bytes
Redo Buffers        16531456 bytes
Database mounted.
Database opened.
SQL>
SQL>Please to add comments
No comments yet. Be the first to comment!