You are currently viewing our boards as a guest which gives you limited access to view most discussions, articles and access our other FREE features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload your own photos and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!
If you have any problems with the registration process or your account login, please contact contact support.
If you prefer not to see double-underlined words and corresponding ads, place your cursor
I’m using VB6 to connect to two different ORACLE 8 DB’s.
These DB’s are set up with different language settings.
DB1 is set up with NLS_LANG = AMERICAN_AMERICA.WE8ISO8859P1
DB2 is set up with NLS_LANG = GERMAN_GERMANY.WE8ISO8859P9
Setting these values in the registry allows me to connect to the DB’s but not at the same time. So the question is how to set NLS_LANG individual for each session. I have tried out various settings for the
Originally posted by ravipurbia
If I understood your probs, then u can try this with creating at command prompt one enviorenment variable for each session,,,
SET NLS_LANG=AMERICAN_AMERICA.WHATEVER
and for onther session go to prompt
SET NLS_LANG=GERMANY,,, WHATEVER
all the best!
Thanks for the answer, but I have to connect to the DB’s with on single EXE file.
My hope is that someone knows a Solution – like setting NLS_LANG in the tnsname.ora for each Database file.