Anyone See anything wrong with my Insert Statement I keep getting an error messageMsg 8152, Level 16, State 10, Line 1String or binary data would be truncated.The statement has been terminated.INSERT INTO Student_ind (ParentID, [Family ID], [Student First Name], [Student Last Name], [Student SS#], Phone, Message, StudentAddress, StudentCity, StudentState, StudentZip, EmailAddress, TribalAfflilation, [Event ID], TanfStaffMakeReferal, TypeOfParticipant, RequiredHours, SpecialInstructions, [Referral Date])SELECT [Parent ID], [Family ID], [Parent First Name], [Parent Last Name], [Parent SS#], [Telephone #], [Message #], Address, City, State, Zip, [E Mail Address], [Tribal Affiliation], [Event ID], [TANF staff making Referral], [Type Participant], [Required hours], [Special Instrution], [Date Of Referral]FROM Parent_indWHERE (NOT EXISTS (SELECT Parent_ind.[Parent ID], [Family ID], Parent_ind.[Parent First Name], Parent_ind.[Parent Last Name], Parent_ind.[Parent SS#], Parent_ind.[Telephone #], Parent_ind.[Message #], Parent_ind.Address, Parent_ind.City, Parent_ind.State, Parent_ind.Zip, Parent_ind.[E Mail Address], Parent_ind.[Tribal Affiliation], [Event ID], Parent_ind.[TANF staff making Referral], Parent_ind.[Type Participant], Parent_ind.[Required hours], Parent_ind.[Special Instrution], Parent_ind.[Date Of Referral] FROM Student_ind AS Student_ind_1 WHERE ([Family ID] = Parent_ind.[Family ID])))