This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
Hi, I tried to execute insert query using String and integer variables I got "String or binary data would be truncated" error I tried for many times .But I did not get the insertion of data.Give me an complete requested insert statement example.
Originally posted by rameshmca rk: Hi, I tried to execute insert query using String and integer variables I got "String or binary data would be truncated" error I tried for many times .But I did not get the insertion of data.Give me an complete requested insert statement example.
This means that you are inserting data that does not fit in your table's column.
If your column name can hold 10 characters, and you try to insert 'rameshmca rk', you can get this error.
If you show us your table definition and the query you use to insert the data, we can help you finding out the exact cause.