I am getting following error. I under stand this error message. But in my case I am not able identify the problem.
String or binary data would be truncated.
The statement has been terminated.
My table:
test
(t1 char(4),
t2 char(4)
)
Insert statement:
insert into rpt_rating_distribution_map
(t1, t2)
values
('RR','BB')
If I am using SET ANSI_WARNINGS OFF and running insert statement then it is inserting successful.
Does any one have idea why am I getting error.
Thanks,
RajPree
String or binary data would be truncated.
The statement has been terminated.
My table:
test
(t1 char(4),
t2 char(4)
)
Insert statement:
insert into rpt_rating_distribution_map
(t1, t2)
values
('RR','BB')
If I am using SET ANSI_WARNINGS OFF and running insert statement then it is inserting successful.
Does any one have idea why am I getting error.
Thanks,
RajPree