Edwin, Both ops navagator Run SQL Script and JDBC (toolbox) return the error when insert of field in form '2000-11-02 20:04:00' is attempted. This is an example from the SQL reference: A string representation of a timestamp is a character string that starts with a digit and has a length of at least 16 characters. The complete string representation of a timestamp has the form yyyy-mm-dd-hh.mm.ss.nnnnnn or yyyymmddhhmmss. Trailing blanks can be included. Leading zeros can be omitted from the month, day, and hour part of the timestamp when using the timestamp form with separators. Trailing zeros can be truncated or omitted entirely from microseconds. If you choose to omit any digit of the microseconds portion, an implicit specification of 0 is assumed. Thus, 1990-3-2-8.30.00.10 is equivalent to 1990-03-02-08.30.00.100000
So, it looks like you need the dash between the date and time and replace the colons with periods -or- drop all of the formatting. Bill