How to set NLS_LANG parameter in Linux / Solaris [message #56069] |
Wed, 05 March 2003 00:24 |
sai sreenivas jeedigunta
Messages: 370 Registered: November 2001
|
Senior Member |
|
|
hello all,
using regedit if we got to Oracle_home -> Home0 -> NLS_LANG we can set this character set in Windows platforms.. where can we set this for Linux ?
I have a value as AMERICAN_AMERICA.WE8ISO8859PI for windows and i want to set the same for Linux and Solaris also.. Please let me know about it..
Also help me in the below issue ...what should i do to avoid the below problem ..
[b]
sql> connect scott/tiger@Windowsbox
sql>desc sample
Col1 varchar2(20)
Sql> insert into sample values('µ');
1 row(s) created
Note: shortcut to 'µ' is Alt + 1254
Sql> select * from sample;
µ
1 row(s) selected.
now,
sql>connect scott/tiger@linuxbox
sql>desc sample
Col1 varchar2(20)
Sql> insert into sample values('µ');
1 row(s) created
Sql> select * from sample;
?
1 row(s) selected.
How to avoid this problem . I understand its some character set problem ... Help me in this regard..
Thanks and Regards
sai
|
|
|
|
|