Hi guys,
I just want to setup my date format to look like this :
dd-mm-yyyy
I remember I need to set up in my profile by NLS_LANG, something like this below (but I tried doesn't work) :
set NLS_LANG=american_america.US8PC437
set DATE_STAMP='dd-mm-yyyy'
I used to got it worked but I can't remember in which part,
I believe you guys can nail it.
Thanks guys
I just want to setup my date format to look like this :
dd-mm-yyyy
Code:
create table hokky (a date);
Table created.
insert into hokky values (sysdate);
1 row created.
select * from hokky;
A
---------
[b]31-JAN-08[/b] --> [red]which I dont want this, I'm expecting 31-01-2008[/red]
I remember I need to set up in my profile by NLS_LANG, something like this below (but I tried doesn't work) :
set NLS_LANG=american_america.US8PC437
set DATE_STAMP='dd-mm-yyyy'
I used to got it worked but I can't remember in which part,
I believe you guys can nail it.
Thanks guys