Tagged Questions

7
votes
4answers
8k views

NLS_LANG setting for JDBC thin driver?

I am using the thin Oracle JDBC driver ver 10.2.0 (ojdbc14.jar). I would like to configure its NLS_LANG setting manually. Is there a way? Currently it fetches this setting from the VM variable ...
2
votes
0answers
185 views

Package recompile after changing nls_length_semantics

I have a database where the nls_length_semantics value has been changed from byte to char. Is it necessary to recompile all the packages that have externally accessible varchar2 based data types (for ...
2
votes
5answers
4k views

ORA-00604 ORA-12705

I am having this error in my j2ee web application. java.sql.SQLException: ORA-00604: error occurred at recursive SQL level 1 ORA-12705: Cannot access NLS data files or invalid environment specified ...
1
vote
1answer
79 views

oracle date and nls settings

I get an ORA-01858 exception. I think it is due to NLS settings and date: declare currentDate DATE := sysdate; queryString VARCHAR2(300) := '... where blablabla = :bind_timestamp ...'; ...
1
vote
2answers
413 views

Is there an easy way to convert HTTP_ACCEPT_LANGUAGE to Oracle NLS_LANG settings?

When adding internationalisation capabilities to an Oracle web application (build on mod_plsql), I'd like to interpret the HTTP_ACCEPT_LANGUAGE parameter and use it to set various NLS_* settings in ...
0
votes
3answers
293 views

Connecting to Oracle from Perl

I am trying to connect to Oracle using Perl. I am trying to connect from a Windows XP machine that has Perl installed. I also have downloaded Oracle SQL Developer and Oracle Instant Client. I can ...
0
votes
1answer
216 views

NVARCHAR2 equation issue in Oracle 10g

Env: Oracle version: Release 10.2.0.1.0 Server: Windows XP Language in oracle: select userenv('language') from dual; Result: CHINESE_CHINA.AL32UTF8 Table structure: PARTY_ID NVARCHAR2(50) ...