List of Java Objects Introduced/Removed by INITJVM.SQL in Version 12.2
(Doc ID 2380098.1)
Last updated on APRIL 27, 2023
Applies to:
Oracle Database Backup Service - Version N/A and laterOracle Database Cloud Exadata Service - Version N/A and later
Oracle Database Exadata Express Cloud Service - Version N/A and later
Oracle Database Cloud Service - Version N/A and later
Oracle Database - Enterprise Edition - Version 12.2.0.1 to 12.2.0.1 [Release 12.2]
Information in this document applies to any platform.
Purpose
List of the java objects introduced/Removed by the 12.2 version of the INITJVM.SQL script. This would be considered the list of core jvm java objects owned by SYS.
Scope
This list can be used in the event that a problem occurs with a java class or set of java classes to determine whether the classes are part of the core JVM or from another source. In addition this information can be used to determine the most appropriate method of replacing the classes.
The core JVM in 12.2 should consist of approximately 40348 java objects but this value may differ slightly on different platforms and versions. The objects consist of 4 different object types as detailed below:
COUNT(*) OBJECT_TYPE
---------- -----------------------
413 JAVA DATA
1730 JAVA RESOURCE
38202 JAVA CLASS
3 JAVA SOURCE
In order to determine which object_type a particular object is the following select statement can be used:
SQL> select object_type
2 from all_objects
3 where dbms_java.longname(object_name) = '<object name>'
4 and object_type like '%JAVA%';
an example would be:
SQL> select object_type
2 from all_objects
3 where dbms_java.longname(object_name) = 'oracle/net/aso/C03'
4 and object_type like '%JAVA%';
OBJECT_TYPE
-------------------
JAVA CLASS
Details
To view full details, sign in with your My Oracle Support account. |
|
Don't have a My Oracle Support account? Click to get started! |
In this Document
Purpose |
Scope |
Details |
Objects Introduced |
Objects Removed |