This looks like a MS SQL Server error. Correct?
I suspect you are trying to update or insert a row that is larger than 8060 bytes.
You have a few options:
1. Shorten the data (i.e., is there a
string that can be truncated?)
2. Convert any large char or varchar fields to text datatype
2. Move one or more columns to different tables.