|
|
Re: Urgent! NLS_LANG - How do I find out what's the setting without the environment variable? [message #54395 is a reply to message #54388] |
Thu, 14 November 2002 19:45 |
Gilson
Messages: 7 Registered: November 2002
|
Junior Member |
|
|
HI.
NLS_LANG is made up by three parameters
NLS_LANG = NLS_LANGUAGE_NLS_TERRITORY.character_set
In sql*plus connected as a DBA user type
show parameter nls
this sentence wil give you various parameters and their values find NLS_LANGUAGE (AMERICAN) and NLS_TERRITORY (AMERICA)
after that you can execute this
alter database backup controlfile to trace;
this will give you an script to recreate your controlfile and the information of the database character set
you can find the created file at your udump directory
at the end of this file you will find something like this
CHARACTER SET WE8ISO8859P1
WE8ISO8859P1 this is your database character set
finally your NLS_LANG will look like this
NLS_LANG = AMERICAN_AMERICA.WE8ISO8859P1
Hope this helps you
Gilson
OCP- DBA
|
|
|