I have never, ever ran into this before. I am inserting data from one table to another and the insert is only one field to another field. Both fields are varchar(50). The field being transferred from populated just fine using an Access 2007 text import function with no errors. When I try to do this:
INSERT INTO TT_Username_CashSheet_GL_Assignments (
Username
) SELECT MoreInfo FROM TT_Import
GROUP BY MoreInfo
I get this:
Msg 8152, Level 16, State 14, Line 1
String or binary data would be truncated.
The statement has been terminated.
This has me completely puzzled. I have googled this and most (if not all) postings talk about the some entry in the field being too long. Since both fields are exactly the same size (varchar(50)) this does not seem possible. Can someone give me an idea on this one? Any help is appreciated. Thanks.
Dave
INSERT INTO TT_Username_CashSheet_GL_Assignments (
Username
) SELECT MoreInfo FROM TT_Import
GROUP BY MoreInfo
I get this:
Msg 8152, Level 16, State 14, Line 1
String or binary data would be truncated.
The statement has been terminated.
This has me completely puzzled. I have googled this and most (if not all) postings talk about the some entry in the field being too long. Since both fields are exactly the same size (varchar(50)) this does not seem possible. Can someone give me an idea on this one? Any help is appreciated. Thanks.
Dave