Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.tools -> Re: NLS_DATE_FORMAT

Re: NLS_DATE_FORMAT

From: Sean McGuire <sean.mcguire_at_external.rrd.com>
Date: 1999/04/22
Message-ID: <7fn9sa$2uu1@rrdnet20.rrd.com>#1/1

Setting NLS_DATE_FORMAT in your init.ora makes little difference. It is ALWAYS the SESSION that determines the format MASK! To figure out the value of your current session:

select * from nls_session_parameters;

It is difficult to change everyone's registry or environment variables, so we decided issue the following when all users connect regardless of their client settings:

alter session set nls_date_format = 'DD-MON-YYYY';

This is the best solution. Remember, this is just a date format, not a y2k fix. Received on Thu Apr 22 1999 - 00:00:00 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US