Created
October 9, 2013 16:19
-
-
Save bjhaid/6903904 to your computer and use it in GitHub Desktop.
ORA-01882: timezone region not found
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ORA-01882: timezone region not found | |
Solution: | |
edit setenv.sh | |
you would find: | |
export JAVA_OPTS="-server -Xmx1024m" | |
and append: | |
"-Duser.timezone=+01:00" to the parameters supplied to the JVM ( where +01:00 is timezone relative to GMT ) | |
to become: | |
export JAVA_OPTS="-server -Xmx1024m -Duser.timezone=+01:00" | |
save the file and voila |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment