Working with Oracle 8i.
Have two columns, start_date and end_date. Both created on a table using varchar2(10).
I need to convert these to a datetime, while loading records into the table they are loaded 'mm/dd/yyyy' from a simple text file.
When I try using to_date(field,MM/DD/YYYY) I get the error ORA-01833: month conflicts with Julian date.
When I try using to_char(field,'MM/DD/YYYY') I get the error: ORA-01722: invalid number.
I need the date and time from this field, any help is appreciated.
Thanks.
Have two columns, start_date and end_date. Both created on a table using varchar2(10).
I need to convert these to a datetime, while loading records into the table they are loaded 'mm/dd/yyyy' from a simple text file.
When I try using to_date(field,MM/DD/YYYY) I get the error ORA-01833: month conflicts with Julian date.
When I try using to_char(field,'MM/DD/YYYY') I get the error: ORA-01722: invalid number.
I need the date and time from this field, any help is appreciated.
Thanks.