How to convert column with oracle date value to Julian date
437495Aug 24 2006 — edited Aug 24 2006Below is the query that I'm using with the error message:
SELECT TO_CHAR(TO_DATE(DATE_VALUE, 'J')) FROM OPEVENT
*
ERROR at line 1:
ORA-01830: date format picture ends before converting entire input string
The DATE_VALUE column's format is like this: 28-APR-03 (DD-MON-YY format)
What do I need to do to correct the error?