I have found other posts similar to this one, but none of them have resolved my issue. I have a database table that contains comments (mostly the body of email messages) and each comment (message) is broken into chunks of 1024 characters per record. So, if an email message is 3200 characters long, it will be split into 4 records.
Each of these strings a V_WString set to a size of 1024.
I am using the Summarize tool to concatenate those strings back together into one field. After concatenating them, the Browse tool shows that the fields are truncated to 5192 characters, but it says that the longest value is 26079 characters.
However, no matter how I try to output this record, it always gets truncated to either 5192 characters or 8192 characters. I have tried to Excel, CSV, and directly to a MSSQL database to an nvarchar(max) field.
Is there another option to get these strings to keep all of the characters?