I have a unix and a linux server used as Database Server and Application Server Respectively. The Database is Oracle 10g and App Server is Weblogic 9.3 MP3 with jRockit 1.5 installed. I have a connection pool created in weblogic server.
I tried reading NLS_DATE_FORMAT from NLS_DATABASE_PARAMETERS, NLS_SESSION_PARAMETERS and NLS_INSTANCE_PARAMETERS table with four different way.
- Using sqlplus showing DD-MON-YYYY for all, as expected.
- A connection from pool in my web app the NLS_SESSION_PARAMETERS table show it as DD-MON-RR, and rest of table shows DD-MON-YYYY.
- A standalone java programs obtaining db connection directly, same result as in (3)
- Ran same program from my PC it showed same result as in (1) ie.DD-MON-YYYY for all.
I have not set NLS_LANG or NLS_DATE_FORMAT in any(on db server, on app server or on PC) of my environment any where. The init.ora has DD-MON-YYYY setting.
So what makes NLS_DATE_FORMAT different when doing through java code on server.