Hi all,
This works in SQL Developer.
Why does this not work in a SQL Executor/Creator?
select to_date(736845 + to_char(to_date ('02-01-0001'),'J'),'J') t1,
to_char(to_date ('02-01-0001'),'J') t0
from dual
output:
T1 T0
31-05-18 1721425
Fme executor insists `ORA-01843: not a valid month'
which is totaly not true!
It appears that the 'J', julian format is not recognised.
Is this a error or am i missing something?
Don't suggest out of sql solutions, i wan't it to be done in the executor. Be aware i will issue demerits !! ;) SQL answers required.
Greets an txia for your answers.