Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Oracle 8.1.7 on Sun Solaris, NLS_LANG not working

Status
Not open for further replies.
You can check which values are supported on your platform by querying V$NLS_VALID_VALUES. I ran the following query on one of my servers, and found the following values that matched on the first six characters of WE8ISO88S9P1. None matched exactly, but of course things may be different on your server. However, a good guess is that you mistyped and intended WE8ISO8859P1, which differs by only one character.

select value from V$NLS_VALID_VALUES
where value LIKE 'WE8ISO%'

VALUE
-------------
WE8ISO8859P1
WE8ISO8859P9
WE8ISO8859P15
WE8ISOICLUK
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top