I have a base 64 image with 78232 characters (didn't put the encode because of obvious reasons).
When I save to a VARCHAR(max) column in SQL Server, I'm not getting the entire value. I'm getting a string with only 43679 characters
Since I read that VARCHAR(max) can store up to 2^31-1 = 2.147.483.647
characters I think something is wrong.
Can someone explain why?