Saturday

Solution: Error Message: Oracle Jinitiator version too low

Problem:
Frame title: Forms
Frame content:
FRM-92095: Oracle Jinitiator version too low. Please install version 1.1.8.2 or higher.
Two buttons at the bottom right side:
First Button Label Name: Details…
Second Button Label Name: OK

Solution:
Run command prompt window as administrator

Type the following command:
C:\Windows\system32>setx -m JAVA_TOOL_OPTIONS -Djava.vendor='"Sun Microsystems Inc."'
SUCCESS: Specified value was saved.
C:\Windows\system32>

Close the command prompt window and reopen it again

Make sure you get the following output message by typing the “java” command:
C:\Users\username1> java
Picked up JAVA_TOOL_OPTIONS: -Djava.vendor='Sun Microsystems Inc.'
C:\Users\username1>

Note:
The default java vendor value is 'Oracle Corporation'.

No comments:

Measure execution time with Julia, example using sorting algorithms

# random integers between 1 and 100 inclusive, generate thousands of them x = rand ( 1 : 100 , 100000 ) @time sort (x; alg=InsertionSort, r...