I’m looking for a data type in SQL Server 2008 Express that can stored vast amounts of text. nvarchar(max) looks the closest, but I read only store upto 4,000 char. Is that true? It there a data type that can store more? (I remember the memo field from days gone by)
Share
varchar(max) and nvarchar(max) both store up to 2GB, so your information was wrong.