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!

Blob datatype equivalent

Status
Not open for further replies.

chebbi

Programmer
Feb 6, 2002
98
IN
Hi

In my application we have the resume upload feature where people can copy and paste their test formattted resume in a textarea and submit the form. Thistextarea content gets stored in a sql server2000 database. The problem is that the field in he database where this resume gets stored is set to nvarchar daatype which holds a max of 4000 characters. I would like it to change to adatatype which holds unlimited characters like blob datatype in oracle. Any help will be highly appreciated.
Badrinath Chebbi
 
The Text data type is the Blob equivalent. However, using a text column will require significant changes to your code. You should read about Text and the various Text functions in SQL BOL before making the change.

The varchar columns can hold 8000 characters. If you don't require the double byte storage of Unicode you could increase the column character size by converting to varchar. Terry L. Broadbent - DBA
Computing Links:
faq183-874 contains "Suggestions for Getting Quick and Appropriate Answers" to your questions.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top