Hello
I am with a company that is using a 3rd party software and adding many fields to the primary table.
When adding more fields - message appears - Maximum row size (9457) exceeds the maximum number of bytes per row (8060). INSERT or UPDATE of a row in this table will fail if the row length exceeds 8060 bytes.
This means it would only be true if the maximum amount of characters were stored in a varchar field. So, if a record was INSERTED or UPDATED - it would ONLY encounter a problem if the record exceeded 8060 bytes - correct? (This would seem to be rare)
Are there any other concerns with having a table designed this way?
I would like to see this data more normalized but I am not a DBA. I want to have the database design changed - but looking for good reasons to justify redesigning some of the interface - any suggestions or helpful documentations?
Thanks
Dave
I am with a company that is using a 3rd party software and adding many fields to the primary table.
When adding more fields - message appears - Maximum row size (9457) exceeds the maximum number of bytes per row (8060). INSERT or UPDATE of a row in this table will fail if the row length exceeds 8060 bytes.
This means it would only be true if the maximum amount of characters were stored in a varchar field. So, if a record was INSERTED or UPDATED - it would ONLY encounter a problem if the record exceeded 8060 bytes - correct? (This would seem to be rare)
Are there any other concerns with having a table designed this way?
I would like to see this data more normalized but I am not a DBA. I want to have the database design changed - but looking for good reasons to justify redesigning some of the interface - any suggestions or helpful documentations?
Thanks
Dave