I have to convert from Julian value to Regular Date with time.
Select to_char(to_date(2455198, 'J'), 'DD-MM-YYYY HH:mm:ss') from dual;
This query is working and the result is 01-01-2010 12:00:00
Select to_char(to_date(2455197.75001, 'J'), 'DD-MM-YYYY HH:mm:ss') from dual;
This above query is not working and got this error:
ORA:01830: date format picture ends before converting entire input string
Julian value: 2455197.75001
and equivalent date value is: 1-January-2010 06:00:01