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

How can I change the max_row_size? 1

Status
Not open for further replies.

hyperbug

Programmer
Aug 10, 2001
25
ES
The odbc can't insert rows grather than 8062 bytes.
Is it possible to change this size?

 
I don't think you can change this setting in SQL. If you have any large (over 1000) varchar columns in this table, you might consider changing them to TEXT datatypes - the TEXT datatype only stores one 16 byte pointer in the data row but allows you to enter up to 2G of data. Varchar/char stores all of the data in the data row which is why you are limited by the actual number of bytes entered.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top