Reputation: 346
I am trying to understand how the Embedded Oracle JVM works ( The JVM used to run Java Stored Procedures and Triggers ).
Even partial answers would be much appreciated
Upvotes: 0
Views: 227
Reputation: 231661
The embedded JVM is (slightly) customized from a normal JVM and is compiled as part of the database. Different versions of Oracle have a different internal JVM so you could upgrade the JVM version by upgrading the database. If you upgrade to 12.1 or later you would be able to choose between two different JVMs though it is an either/ or choice-- you can't have some code using one JVM and some using another.
A Java stored procedure can't use an external JVM.
Upvotes: 1