aspiringprog
MIS
I have dates stored in this format
Jan 1 2003 12:00:00:000AM
I need to convert this into mm/dd/yyyy format so that I can compare with dates from another table. When I try using the
following function
TO_DATE(SUBSTR(DT,1,10),'MON DY YYYY')
I get the following error
ORA-01835: day of week conflicts with Julian date
Can you please tell me how to get rid of this error?
Thanks