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

10,564

Solution 1

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.

Solution 2

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.

Share:
10,564
Vih Damarques
Author by

Vih Damarques

A curious walking through the knowledge door. That is my club.

Updated on June 27, 2022

Comments

  • Vih Damarques
    Vih Damarques almost 2 years

    I am using the database Oracle 11g Express Edition (XE) and when I try to create a java source object it returns me an error:

    ORA-29538: Java not installed

    The source code is simple:

    create or replace and compile java source named hello AS 
      public class Hello {
        public static String hello() { return "Hello!"; }
      };
    

    I found at Oracle's documentation that Oracle XE does not include Java.

    Does anybody know if it is possible to "install" Java on it ?