col len addition of table is more than 8k will it affect the performance or the data in it?

  • "Surpassing the 8,060-byte row-size limit might affect performance because SQL Server still maintains a limit of 8 KB per page. When a combination of varchar, nvarchar, varbinary, sql_variant, or CLR user-defined type columns exceeds this limit, the SQL Server Database Engine moves the record column with the largest width to another page in the ROW_OVERFLOW_DATA allocation unit, while maintaining a 24-byte pointer on the original page. Moving large records to another page occurs dynamically as records are lengthened based on update operations. Update operations that shorten records may cause records to be moved back to the original page in the IN_ROW_DATA allocation unit. Also, querying and performing other select operations, such as sorts or joins on large records that contain row-overflow data slows processing time, because these records are processed synchronously instead of asynchronously."

    i have one table whoes addition of col length is more than 8 k.

    but i know that ,data in it will be less than

    8 k.

    so that means it will not be affected by above problem.

    yours sincerely

Viewing 0 posts

You must be logged in to reply to this topic. Login to reply