Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Why do I get a binary data would be truncated error when trying to insert the output from a stored proc into a table, but not if I do the insert inside the stored proc from the SELECT? The table definition matches the column types of the columns being selected, so I know the column sizes are correct. Does SQL Server return the max size for each type when inserting from a stored proc, rather than using the lengths of the values being returned? Thanks.

share|improve this question
2  
post the SP so we can see. My first guess is a different type defintion of the columns even if you say they are equal. – YvesR Jun 2 '12 at 7:10
Sorry I don't have the sp. It was something I was working on recently. In theory then, is there no difference in inserting from a SELECT and inserting output from a Store Proc? – stephenward Jun 2 '12 at 15:46
the is no difference how you insert statement in this case. watching the part that select and insert the records regardless what the SP does in addition there should be no difference in performance. – YvesR Jun 2 '12 at 17:11

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.