I have timestamp column:
MAX_LOAD_DATE_TS TIMESTAMP(6)
My load_dates comes formatted with T in between date and
load_dates
date
You can use the appropriate format string as well as the CAST function, as below:
SELECT CAST(TO_DATE('2014-07-02T10:46:22', 'YYYY-MM-DD"T"HH24:MI:SS') AS TIMESTAMP(6)) AS timestamp_value FROM table;
Related question