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

Saving text/character data

Status
Not open for further replies.

LohneB

Programmer
May 4, 2000
84
US
Good morning.

I have an application where MS SQL is used to save a large amount of data. I have a need to save a text field that exceeds 8000 characters. Is there an easy way to do this without extensive programming modifications to save the date in two or more fields?

Thanks for any help.

Bill

Bill Lohne
blohne@lohne.us

 
I would use multiple records rather than multiple fields, with a sequence number for each record. Multiple records will be easier to manage than multiple fields. You could have the first record (aka sequence zero) stored in the master record and have all subsequent records (bytes 8001 and onward) stored in a subordinate file called, say, ExtendedText.



Sometimes the grass is greener on the other side because there is more manure there - original.
 
Thank you - good suggestion. This should be very easy to do in my current environment..

Again, thanks.

Bill

Bill Lohne
blohne@lohne.us

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top