I got an SQL Server table column that can store an image in the form of an extra large base64 string value, the thing is that I'm trying to copy the base64 value to check the image in another application but when I copy it, it truncates itself and when I paste the base64 in the other app it shows the half of the image. Maybe something with the type of value that can be stored there?
Also is it happening in other tables that have extra large strings (34k characters or more).
The type of value stored in the column is varchar(MAX)
and the base64 string is very very large.
Any help is appreciated!