Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
AskSQLTeam
Ask SQLTeam Question
0 Posts |
Posted - 2001-12-12 : 08:42:55
|
| skumar writes "Which datatype should i used to store large html code into sql database table.Or How to store large html code into table." |
|
|
mfemenel
Professor Frink
1421 Posts |
Posted - 2001-12-12 : 09:17:45
|
| Depending on how long your code is you can use varchar, nvarchar or text. I'd reccomend varchar as the easiest solution. You will find considerable storage and manipulation issues in working with text data. BOL will give you some more detail on the three data types mentioned above and their size limitations.Mike "A program is a device used to convert data into error messages."Edited by - mfemenel on 12/12/2001 09:18:14 |
 |
|
|
|
|
|