Reputation: 14304
Did logged into Enterprise Manager 11g via browser. There are NLS_TERRITORY
, NLS_LANGUAGE
and other NLS
related params in In Server->Initialization Parameter->NLS group
. But unable to find NLS_CHARACTERSET
parameter. Explicit search of the parameters gives
"No parameters found".
Is "select * from nls_database_parameters" the only way to view its value?
Upvotes: 3
Views: 20966
Reputation: 61391
Answer from @OraNob gave me
ORA-00942: table or view does not exist
However this worked for me:
select * from v$nls_parameters where parameter in ('NLS_CHARACTERSET');
Upvotes: 2