I need to insert the following date/time format to Oracle:
INSERT INTO mytable (ID, DATETIMEREAD) VALUES (1, TO_TIMESTAMP('2016-06-03T11:28:07.571', 'YYYY-MM-DDTHH24:MM:SS')
I´m getting the following error:
ORA-01821: date format not recognized
How can I properly insert that ISO format (without time zone) to Oracle. The DATETIMEREAD
column type is TIMESTAMP(6)