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 Shaun E on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

MS SQL Field Length Limits

Status
Not open for further replies.

CoolCoder

Programmer
Mar 26, 2003
5
GB
Does anyone know how to increase the field length limit to hold more than 8000 characters.
I currently use Access's "Memo" field type which seems to work fine but I need to upgrade to MS SQL.
I have huge text files and as it is MS SQL can't do it.
HELP!

Tony
 
You need to use the text data type in SQL Server. You cannot increase the max length of varchar type. --James
 
CoolCoder -

Please note that the text datatype requires special handling. Check out BOL for READTEXT and WRITETEXT commands. Good luck! --Angel [rainbow]
-----------------------------------
Every time I lose my mind, I wonder
if it's really worth finding.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top