I want to convert Julian dates to normal dates (from JDE database). I run this query:
select to_date(to_char((DATE+1900000)),'YYYYDDD') from table ;
And I get the following error:
ORA-01848: day of year must be between 1 and 365 (366 for leap year).
I know it's because some dates are null or have no values.
Can anyone help me out on this please?