A discussion of index internals must also address the impact of fragmentation on storage and performance. This chapter provides an overview of fragmentation, its impact on data storage, and how it can harm performance.
Page Fragmentation
SQL Server stores information in the database on 8 KB pages. In general, rows in tables are limited to that size; if they are smaller than 8 KB, SQL Server stores more than one row per page. One of the challenges with ...