Is there a way to install java on Oracle 11g XE? Is there a way to install java on Oracle 11g XE? oracle oracle

Is there a way to install java on Oracle 11g XE?


No, Java support is not available in Oracle Database 11g Express Edition, and since the database itself does not have Java support, there is no way to extend it by installing Java yourself.


And if you have the full licensed version of Oracle, and need to install the JVM in Oracle, you can invoke as sysdba:

 @?/javavm/install/initjvm.sql

and you may also need to run

 @?/rdbms/admin/catjava.sql

The website https://itkbs.wordpress.com/2014/02/15/how-to-install-java-in-oracle-database-ora-29538/ taught me the first part; I still had errors with a Java class schedFileWatcherJava not found, which the second script fixed.

You can verify if Java is installed with this query from that website:

select comp_name, version, status from dba_registry;

which will list JServer JAVA Virtual Machine as part of the results if Java is installed.