I am doing this
SELECT * INTO table1 FROM Table0
I get an arithmetic overflow on a datetime column (error converting to smalldatetime), however the destinations schema that got created has a datetime column and not a smalldatetime column..
|
I am doing this
I get an arithmetic overflow on a datetime column (error converting to smalldatetime), however the destinations schema that got created has a datetime column and not a smalldatetime column.. |
|||||||||||||||||||
|
|
It sounds to me like you have an implicit conversion to smalldatetime, probably in a computed column. If you look at the Estimated Execution Plan, you'll probably see Compute Scalar operations in there. Hit F4 to see the properties, and you should be able to see the calculations that are being done, including any implicit conversions that are being used. |
|||
|
|
|
This kind of problem is always indicative of corruption and can easily be debugged with
|
|||||||||||||||
|