I have an Oracle DB with a timestamp field in it. What is the correct SQL code to insert a timestamp into this field?
timestamp
INSERT INTO TABLE_NAME (TIMESTAMP_VALUE) VALUES (TO_TIMESTAMP('2014-07-02 06:14:00.742000000', 'YYYY-MM-DD HH24:MI:SS.FF'));