Have you set the "Can grow" and the "Allow height to increase" properties? Please read documentation.
A workaround is explained here.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Doesn't seem like any of the other 'truncated' issues are the one that I have... Sooo, I have text in a Database that is being queried using Report Builder. When It queries and displayed in the report it only has ~8000 characters in it. I tried several things to expand the capacity of the text box within the report itself, but it appears that the complete text (~25,000 characters) is not being brought in during the query. When I peek into my database and my UI there data is there (all 25,0000+ characters).
the text box is pretty simple, so I'm just not sure how to overcome the truncation. Below is the what gets pulled from the Dataset:
=Fields!shortstory.Value
Have you set the "Can grow" and the "Allow height to increase" properties? Please read documentation.
A workaround is explained here.
Hi Robert-7539,
As it turns out, the query is actually only grabbing ~8000 of the characters.
In addition, what is the data type of the column?
Please check the data type and data of column shortstory in the SSMS.
Best Regards,
Amelia
Hi Robert-7539,
Thanks for your reply.
You can try to change the data type of column from xxx(n) to xxx(max). max indicates that the maximum storage size is 2^31-1 bytes.
Please refer to Data types and Modify Columns which might be helpful.
Best Regards,
Amelia