Skip to content

Instantly share code, notes, and snippets.

@bjhaid
Created October 9, 2013 16:19
Show Gist options
  • Save bjhaid/6903904 to your computer and use it in GitHub Desktop.
Save bjhaid/6903904 to your computer and use it in GitHub Desktop.
ORA-01882: timezone region not found
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