How to change default nls_date_format for oracle jdbc client - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T00:41:14Zhttp://stackoverflow.com/feeds/question/447608http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/447608/how-to-change-default-nlsdateformat-for-oracle-jdbc-client0How to change default nls_date_format for oracle jdbc clientYoni2009-01-15T17:08:26Z2009-01-15T18:47:22Z
<p>I have defined the global nls_date_format on Oracle 10.2 XE as follows:</p>
<pre><code>alter system set nls_date_format='YYYY-MM-DD HH24:MI:SS' scope=spfile;
</code></pre>
<p>When connecting on Windows, the clients override it with session specific format, so I need to run this line at the beginning of every session:</p>
<pre><code>alter session set nls_date_format='YYYY-MM-DD HH24:MI:SS';
</code></pre>
<p>However, I have some custom code that I can't change (jdbc code, using ojdbc14.jar), so I can't execute this line when receiving the connection. Is there a way to change the default value of nls_date_format for all jdbc connections? Perhaps adding something to the connection string, or some environment variable that I can use?</p>
<p>By the way, sqlplus and sqldeveloper also override the server's format with their own, but I found out how to change their defaults, so the problem is only with jdbc connections.</p>
http://stackoverflow.com/questions/447608/how-to-change-default-nlsdateformat-for-oracle-jdbc-client/447686#4476865Answer by Robert for How to change default nls_date_format for oracle jdbc clientRobert2009-01-15T17:30:52Z2009-01-15T17:30:52Z<p>Set nls date format in an after logon trigger</p>
http://stackoverflow.com/questions/447608/how-to-change-default-nlsdateformat-for-oracle-jdbc-client/447965#4479650Answer by Yoni for How to change default nls_date_format for oracle jdbc clientYoni2009-01-15T18:47:22Z2009-01-15T18:47:22Z<p>Thanks, that worked for me.
The trigger that I inserted is this:</p>
<pre><code>CREATE OR REPLACE TRIGGER LOGINTRG
AFTER LOGON ON DATABASE
BEGIN
EXECUTE IMMEDIATE 'ALTER SESSION SET NLS_DATE_FORMAT=''YYYY-MM-DD HH24:MI:SS''';
END LOGINTRG;
</code></pre>