I am trying to import data in CSV file use Oracle SQL Developer. One of the columns in CSV file is date which is in ISO-8601 format 2012-08-22T00:06:52.0Z with fractional second as always 0. Corresponding column in table is of type date. Oracle SQL Developer has option to specify date format in import process so I specify the format as
YYYY-MM-DD"T"HH24:MI:SS."0Z"
But import process fails saying date format is not recognized. Insert statements that Oracle SQL Developer is generating somehow is removing double quotes from the date format.
INSERT INTO TABLE(CREATION_DATE, LAST_MODIFIED_DATE) VALUES (to_date('2009-02-18T00:06:52.0Z', 'YYYY-MM-DDTHH24:MI:SS.0Z'),to_date('2012-08-30T00:06:52.0Z', 'YYYY-MM-DDTHH24:MI:SS.0Z'));
Any suggestions on how to fix this issue?


