If I have the following SQL:
INSERT INTO sometable (someintcolumn) VALUES ('1')
This will succeed, inserting the value 1.
Is there any way I can ask SQL Server to please don't convert the types for me, permanently or temporarily, and instead fail the above SQL execution?
We have a large import project that we'd like to fix all SQL's for, but that requires meticulously going through all SQL's and analyzing the data types of all columns. Since this is executed against test databases on our servers, we'd like to get our server to tell us when we've got the data types wrong.