Link to home
Start Free TrialLog in
Avatar of Turbowy
Turbowy

asked on

Apache invalid or unknown NLS parameter

when we type the following URL

http://name.domain.com:8107/dir/dir1/COMMON.ph_main

In the Apache logs on Solaris 8 server I see the following error:

mod_plsql: /dir/dir1/COMMON.ph_main HTTP-503
 ORA-12705 ORA-12705: invalid or unknown NLS parameter value specified\n

How can I fix that?
Avatar of vaska94
vaska94
Flag of Georgia image

ORA-12705 invalid or unknown NLS parameter value specified

Cause: There are two possible causes: Either an attempt was made to issue an ALTER SESSION statement with an invalid NLS parameter or value; or the NLS_LANG environment variable contains an invalid language, territory, or character set.

Action: Check the syntax of the ALTER SESSION command and the NLS parameter, correct the syntax and retry the statement, or specify correct values in the NLS_LANG environment variable. For more information about the syntax of the ALTER SESSION command, see Oracle8i SQL Reference.
Solution :
on *nix
export NLS_LANG=

on windows
set NLS_LANG=
Avatar of Turbowy
Turbowy

ASKER

I tried the export NLS_LANG= but same issue persists? any other ideas?
ASKER CERTIFIED SOLUTION
Avatar of Turbowy
Turbowy

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial