What's the best method to store long text string (> 5000 chars)?
+1
A:
It depends on the database. With SQL server, you can use varchar(MAX) or text.
http://www.teratrax.com/articles/varchar_max.html explains about different storage types.
and of course, good ol' dependable msdn...
yamspog
2010-04-22 00:44:52
It's SQL Server 2005. Thanks.
guazz
2010-04-22 00:54:12