The problem is that SQL server can handle data from January 1, 1753, through December 31, 9999 only for Datetime fields.
That leaves you only with two options
1 change field type to varchar
2 Use rejected records file (set batch size to 1 for sql server connection) and correct the data in the rejected records file and load it
Hope that helps,
John