steppinthrax
Diamond Member
I got into a little argument with some office buddies over Unindexed tables v.s. indexed. I understand when you add a index to a table you increase select performance because you don't have to do a full table scan. However you take a performance hit with Inserts. Because SQL has to search the structure, looking for a space to insert it.
In a heap, since there is no structure inserts should be the fastest, however selects should take a performance hit. But Microsoft says otherwise!!!!!!!!!!
http://support.microsoft.com/kb/297861
This article indicates heaps are slower with inserts?????
Someone explain
In a heap, since there is no structure inserts should be the fastest, however selects should take a performance hit. But Microsoft says otherwise!!!!!!!!!!
http://support.microsoft.com/kb/297861
This article indicates heaps are slower with inserts?????
Someone explain