Viewing 4 posts - 1 through 4 (of 4 total)
Its because he is executing dynamic sql. I've only ever had this problem when executing dynamic sql with large statements. for some reason, it truncates to the shorter...
April 28, 2016 at 4:25 pm
Shoot, I wanted to say it was because you spelled Widget wrong 😛
April 28, 2016 at 4:16 pm
make sure that the variables you are concatenating with are all varchar(8000). Otherwise, it will truncate to the shorter one (the varchar(4000)) even though it is larger in size.
April 28, 2016 at 4:12 pm
The final variable will truncate to the shorter variables being used to build the string. you have to make all 3 a varchar(8000) for this to work.
April 28, 2016 at 4:10 pm
Viewing 4 posts - 1 through 4 (of 4 total)