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!

Max record size

Status
Not open for further replies.

enak

Programmer
Jul 2, 2002
412
US
I was looking at the specifications for SQL 2000. It states that Bytes per record is 8060. However, a text field will hold 2 GB.

Can someone explain this to me?

TIA
Nate
 
Hi!

The Text Fields data is not directly stored in the Recordset. It stores a pointer to this Data and the Data itself is stored somewhere else. This is handled internally and you dont see this.

Greetings
Remo
 
Do I still UPDATE, INSERT, DELETE, and SELECT the same way?
 
Hi again!

Normaly yes. You should make some tests to see if everything works for your needs.

Greetings
Remo
 
Actually, you may need to use text functions to read and update text columns. See TEXTPTR, TEXTVALID, READTEXT, WRITETEXT, and UPDATETEXT in SQL Books Online. The topics "Text and Image Functions" and "Using text, ntext, and image Functions" should be helpful in knowing why and how to use these functions. 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