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 ?
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.