I am trying to import details from a csv file which i am creating through BI Publisher query from a table.
In the query , I have a date formatted column:
effective_start_date
1951-01-01T00:00:00.000+00:00
1901-01-01T00:00:00.000+00:00
Now when i am importing the entire table in excel. How should i import in sql developer in such a way that the date format comes as 'DD-MON-YYYY'
Right now few records for date are getting imprted in table as null !
Also my targer column format is not an editable screen in sql devleoper
YYYY-MM-DD"T00:00:00.000+00:00", getting "GDK-05021: date format not recognized", even though the generated insert is valid. Are you able to modify the CSV file creation to export just the YYYY-MM-DD part, if you aren't interested in the time?CAST( TO_TIMESTAMP_TZ( value, 'YYYY-MM-DD"T"HH24:MI:SS.FFTZH:TZM' ) AS DATE )