Variable Length More Than 8000 Chars
my variable length is exceeding 8000 characters. as we can't use text data type with a local variable and max limit for varchar data type is 8000 so what is the soln for that.
thanks,
Variable Length More Than 8000 Chars
my variable length is exceeding 8000 characters. as we can't use text data type with a local variable and max limit for varchar data type is 8000 so what is the soln for that.
thanks,
Use VARCHAR(MAX)
. It stores a maximum of 2 147 483 647 characters.
You can use VARCHAR(MAX) or TEXT datatypes.But I prefer using VARCHAR(MAX) as TEXT datatype is deprecated.