I am having a probelm with what the default session nls_date format is. I am workign on deveolping applications which access my 7.3.4 oracle database. I have an application that deals with lots of dates. The problem is that I develop on a wintel box and our brand new production server is a unix. I think I have an idea why the applications fail when they are moved to the production server is that their default session parameters are different.
on my wintel box:
select nls_date_format from nls_session_parameters;
parameter value
-------------------- --------------------
nls_date_format dd-mon-rr
on the unix box
select nls_date_format from nls_session_parameters;
parameter value
-------------------- --------------------
nls_date_format mm/dd/yyyy
how can I change the defalut value for one of these? where is the information stored for the session parameters?
on my wintel box:
select nls_date_format from nls_session_parameters;
parameter value
-------------------- --------------------
nls_date_format dd-mon-rr
on the unix box
select nls_date_format from nls_session_parameters;
parameter value
-------------------- --------------------
nls_date_format mm/dd/yyyy
how can I change the defalut value for one of these? where is the information stored for the session parameters?