Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

What data type to use? 1

Status
Not open for further replies.

edgarasm

Programmer
Oct 29, 2002
26
BR

What data type should I use in order to held a lot data.
Is there some data type which let me held an ilimited amount of data?
 
Text if it is character data.
Image if it is binary data.

How much is a lot.

You might also want to look at varchar it can hold up to 8000 characters.

 
you asked me how much is a lot.

How about a big text with much more than 8000 characters?

If you have some suggestion, thanks in advance!
 
Then use Text or ntext depending on whether you need to store unicode data.

You will also need to learn to handle this kind of data becasue it is not like using the other data types. You'll need t read about WRITETEXT and UPDATETEXT in books online.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top