On SQL Server 2008 R2 (64 bit) what is the max size of a varchar(max)?
I know that after 8K it goes to an overflow page, but I don't know how many chars I can put in over all.
On SQL Server 2008 R2 (64 bit) what is the max size of a varchar(max)?
I know that after 8K it goes to an overflow page, but I don't know how many chars I can put in over all.
Validating from .Net prior to calling SQL it will be int.MaxValue
Console.WriteLine(int.MaxValue);
> 2147483647