When I'm trying to insert values into a MYSQL table using the Cozyroc ODBC Destination I'm getting the error
[ODBC Destination [2]] Error: An error occurred with the following error message: "'0000-00-00 00:00:00' default is invalid for column type TYPE_TIMESTAMP".
The value I'm inserting is not '0000-00-00 00:00:00'. It is '2016-01-02 07:00:00'.
I can get around this by changing the MYSQL column data type from datetime NOT NULL to datetime NULL. It also works if I use the native SSIS ODBC destination, however, that is very slow.
I need to be able to insert into a not null column. Anyone have ideas?