That happens when you attempt to put too much data in to a field. For example, suppose you have a Name field defined as VarChar(10), but you try updating a record (or inserting a new record) that has a name larger than 10 characters.
-George
Strong and bitter words indicate a weak cause. - Fortune cookie wisdom
yes, the value of the data is greater than the size of the column
for example
create table TestSize (Col1 varchar(6))
--no problem
insert into TestSize values ('abcde')
-- here is your message
insert into TestSize values ('abcdeXXX')
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.