Kamran Agayev's Oracle Blog

Oracle Certified Master

Archive for July 17th, 2012

ORA-00600: internal error code, arguments: [keltnfy-ldmInit]

Posted by Kamran Agayev A. on 17th July 2012

Today I got my second internal error while starting the database.

[php]

Starting up ORACLE RDBMS Version: 10.2.0.1.0.
Errors in file /opt/oracle/10.2/admin/ORCL/udump/ORCL_ora_535.trc:
ORA-00600: internal error code, arguments: [keltnfy-ldmInit], [46], [1], [], [], [], [], []
USER: terminating instance due to error 600
Instance terminated by USER, pid = 535

[/php]

I checked all parameters at spfile, but everything seems to be ok. After checking metalink note, I find out that this is because Oracle can’t get host information.

Startup Database Produces ORA-00600: [Keltnfy-Ldminit] [ID 336447.1]

As I already changed the hostname, it wasn’t changed at /etc/hosts file. After changing /etc/hosts file and providing correct hostname, the database opened

Posted in Administration | No Comments »

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

Posted by Kamran Agayev A. on 17th July 2012

Today, while configuring a standby database, I got the following internal error “during spfile creation” :)

[php]ORA-00600: internal error code, arguments: [kspsetpao1], [1753], [1700], [*], [user_dump_dest], [33], [], [][/php]

Actually it’s the first time I get an “internal error” while creating spfile. Not a message, not a warning, but internal error

After checking spfile I saw that I forgot to close the quote mark

[php]*.log_archive_dest_2=’service=standby[/php]

I added the quote mark and the problem solved.

Posted in Administration | 3 Comments »