ORA-00600: internal error code, arguments: [17113], [0x000000000], [], [], [], [], []

Stefan GRECU

Member²
I'm trying to compile an package with PL/SQLDev (JServer Release 9.2.0.5.0) and I get an ORA-00600: internal error code, arguments: [17113], [0x000000000], [], [], [], [], [], [].
(It works just fine with sqlplus ...)
Any ideas?
 
We are receiving this error too. We worked a TAR with Oracle, and they said it was a PL/SQL Developer program issue. They told us to upgrade to the latest release of PL/SQL Developer, which we did. We are not at 6.0.1, and are still getting ORA-0600 [17113] errors. What can we do?
 
This is not a PL/SQL Developer issue. You can easily reproduce it in SQL*Plus:
Code:
SQL> alter session set plsql_debug=true;
SQL> @YourProgramFile.sql
This should also crash.
 
I am receiving the same error and have reproduced it in sqlplus, however when I add the object into NEVER add debug debug info for objects or if I uncheck "add debug info when compiling", I still get the ORA-00600 error.
 
In order to bypass this (ORACLE!!!!) error i'm asking if it is possible to add the debug information (if desired) to the package after the compilation.

Tx,
Stefan
 
Originally posted by Bob Wagner:
I am receiving the same error and have reproduced it in sqlplus, however when I add the object into NEVER add debug debug info for objects or if I uncheck "add debug info when compiling", I still get the ORA-00600 error.
That would indicate that it is not caused by the debug information. Can you reproduce it in SQL*Plus without executing "alter session set plsql_debug=true;"?
Originally posted by Stefan GRECU:
In order to bypass this (ORACLE!!!!) error i'm asking if it is possible to add the debug information (if desired) to the package after the compilation.
I have added this to the list of enhancement requests.
 
Back
Top