Skip to Main Content

Oracle Database Discussions

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

DBUA failed due to ORA-00600: internal error code, arguments: [26599],

user10922685Jan 28 2017 — edited Feb 6 2017

Hi ,

Upgrading 11g RAC database from 11.2.0.2 -> 11.2.0.3 AIX 6.1   using DBUA failed due to error "ORA-00600: internal error code, arguments: [26599]"

I have already added space to system and other tablespace and increased the java_pool and shared_pool size but still getting the error .

Anyone encounter this issue before ?

@@jvmursc

-- subscript for jvmunnn to do a subset of initjvm as part of upgrade

/*

#######################################################################

#######################################################################

##  The following statement may cause an

##  ORA-29554: unhandled Java out of memory condition

##  error.

##  If so, this is because there is insufficient system tablespace,

##  shared or java pool size, or some other resource value is too small.

##  An additional message describing the problem will be output by

##  the statement.

#######################################################################

#######################################################################

*/

declare

2   trash number;

3  begin

4   select 1 into trash from java$jvm$status where action != 'DOWNGRADERELOAD';

5   initjvmaux.check_sizes_for_cjs;

6  exception when no_data_found then null;

7  end;

8  /

PL/SQL procedure successfully completed.

-- Load all the Java classes

begin if initjvmaux.startstep('CREATE_JAVA_SYSTEM') then

2    initjvmaux.rollbacksetup;

3    commit;

4    initjvmaux.rollbackset;

5    initjvmaux.exec('create or replace java system');

6    commit;

7    initjvmaux.rollbackcleanup;

8    initjvmaux.endstep;

9  end if; end;

10  /

begin if initjvmaux.startstep('CREATE_JAVA_SYSTEM') then

*

ERROR at line 1:

ORA-00600: internal error code, arguments: [26599], [1], [195], [], [], [], [],

[], [], [], [], []

:q

-00600: internal error code, arguments: [26599],'

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Mar 6 2017
Added on Jan 28 2017
2 comments
1,485 views