Reputation: 408
I'm trying to understand why a GUID clustered index produces high fragmentation / page splits?
Upvotes: 0
Views: 107
Reputation: 171178
The data type is never the root cause for fragmentation. Fragmentation arises when you add additional data onto pages which do not have space free. This leads to a page split.
There are 2 common reasons for this:
Guids are usually case (1), except if generated in a sequential way (NEWSEQUENTIALID
).
Upvotes: 3