citronas
citronas

Reputation: 19365

Which column type should I use for storing HTML of an unknown size?

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.

Upvotes: 1

Views: 574

Answers (1)

Ray
Ray

Reputation: 21905

Use varchar(max)

Upvotes: 4

Related Questions