The steps to upgrade the javavm are details in the MOS 29787.1
Deinstalling the javavm
-- Start of File rmcorejvm.sql connect / as sysdba spool rmcorejvm.log set echo on set serveroutput on select owner, status, count(*) from all_objects where object_type like '%JAVA%' group by owner, status; execute rmjvm.run(false); shutdown immediate set echo off spool off exit -- End of File rmcorejvm.sql
Installing the javavm
-- Start of File corejvminst.sql connect / as sysdba spool corejvminst.log set serveroutput on set echo on startup mount alter system set "_system_trig_enabled" = false scope=memory; alter database open; select owner, status, count(*) from all_objects where object_type like '%JAVA%' group by owner, status; create or replace java system / shutdown immediate set echo off spool off exit -- End of File corejvminst.sql
Compiling invalid objects
@?/rdbms/admin/utlrp.sql