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.

link|improve this question

It'd be useful to see if we had an "implicit conversion" trap in Profiler – gbn Jan 19 '11 at 18:30
feedback

1 Answer

up vote 0 down vote accepted

Martin says SQL Server can't do it. I wonder how hard it would be to cut the type conversion code out of an open source dbms.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.