The conversion of a datetime2 data type to a datetime data type resulted in an out-of-range?

DateTime has the range: January 1, 1753, through December 31, 9999

DateTime2 has the range: 0001-01-01 through 9999-12-31

So if you are entering a date before 1753 you would get this error when the field in the table is of type DateTime.

Leave a Comment