New installation of 11.2.0.4 PSU 201607 on Windows 7 Pro SP1.
When creating the Java part using "?\javavm\install\initjvm.sql", I received the following message:
begin if initjvmaux.startstep('CREATE_JAVA_SYSTEM') then
*
ERROR at line 1:
ORA-29548: Java system class reported: java.lang.Error: Could not hotload ZoneInfoFile
ORA-06512: at "SYS.INITJVMAUX", line 23
ORA-06512: at line 5
The PL/SQL block executed is the following one:
begin if initjvmaux.startstep('CREATE_JAVA_SYSTEM') then
initjvmaux.rollbacksetup;
commit;
initjvmaux.rollbackset;
initjvmaux.exec('create or replace java system');
commit;
initjvmaux.rollbackcleanup;
initjvmaux.endstep;
end if; end;
/
The error appears on the line:
initjvmaux.exec('create or replace java system');
And within this procedure on the following line:
with x set to 'create or replace java system'.
It's the first time I saw this and I found nothing on Google.
Anyone has already seen that?