I recently discovered that MS-SQL Server 2008 imposes an upper limit of 8000 bytes for a column (for character data).
I need to store data that occusionally could surpass this limit.
Is there a way to do this?
The data are character strings.
Thanks
Use varchar(max) or nvarchar(max). These have a storage limit of 2^31-1 bytes.