What column type should I use for storing html content from a website with an unknown size?

(I'm scanning certain html pages, and create an database entry if there are changes between the last stored entry and the current html code.)

My database is a MSSQL 2008 express database.

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

Use varchar(max)

link|improve this answer
3  
+1. Or potentially nvarchar(max) if you are worried about Unicode chars. It may also be worth noting that text has been deprecated in favour of this :) – Amadiere Apr 3 '10 at 16:56
you can also use a text column, but varchar(max) is soooo much easy, you can use all the string functions directly on a varchar(max) field... – opensas Apr 3 '10 at 16:56
@Amadiere: thanx - I forgot nvarchar(max) – Ray Apr 3 '10 at 16:57
thanks. I'll go with that – citronas Apr 3 '10 at 16:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.