November 12, 2017 at 10:53 am
Just to add to this because it recently came up on another thread... an even more important subject is that of maintaining statistics.
--Jeff Moden
Change is inevitable... Change for the better is not.
November 13, 2017 at 3:15 am
GilaMonster - Saturday, November 11, 2017 10:52 AMThe clustered index is the table. Once you have a clustered index you don't have a separate, underlying table.
And a new row has to be inserted into index pages because all nonclustered indexes MUST be consistent with the underlying table. Hence a row gets inserted into the table (heap or clustered index) and then into all of the nonclustered indexes before the insert is considered complete.
Thanks Gail. You hit the nail. I was missing that understanding.
November 13, 2017 at 3:16 am
Viewing 3 posts - 16 through 17 (of 17 total)
You must be logged in to reply to this topic. Login to reply