2010
Mar 11
Here’s a good tip from Deepak Choudhari of DevX.com


Choosing a Large-Text Data Type for SQL Server Table Columns


What would you do if you needed to store text data in a table column that exceeds 8000 characters? The common choices are the TEXT and NTEXT data types, but these data types are going to be deprecated in the near future.


The solution to this problem is a data type called VARCHAR(MAX), introduced with SQL Server 2005. You can use this data type whenever you want to store text data that varies considerably in length, or that exceeds 8000 characters. The following examples show how to use this data type.


To declare a column of this type in a table, use:


CREATE TABLE MyTable(column1 VARCHAR(MAX), column2 INT … )


To declare a variable of this type in stored procedures or functions, use:


DECLARE @MyVariable VARCHAR(MAX)


This new data type works with the majority of the intrinsic string-manipulation functions, whereas the legacy BLOB types such as TEXT, NTEXT, and IMAGE do not. The new data type is stored in the database in the same exact way, but Microsoft has made some tweaks to the read algorithms for the new types, too.

Leave a Comment




XHTML: You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

Please note: Comment moderation is enabled and may delay your comment. There is no need to resubmit your comment.