why is the index on nobjectid never
utilized? I would expect there to be
an index seek or scan when nobjectid
is specified in the where clause
A common misconception!
One point is: since you're using SELECT *, you want all data from the table. So in the end, SQL Server must go back to the actual data pages and fetch all the values.
When an index seek occurs and finds a hit, then in this case, SQL Server has to do a bookmark lookup - a rather expensive operation.
And since those operations are rather expensive, SQL Server will try to avoid them if it can - so in many cases, a table scan will be used instead, since in the end, that's faster than seeking the nc index and then doing a bookmark lookup.
Points to check:
how selective is the nobjectid column? This one here sounds like a more or less unique ID - that would be good. If you happen to have an index on a column that would be not very selective, then often, the query optimizer will ignore it (since it would have to check too many rows already, so a table scan is quicker in the end)
how many rows are there in the table?? For small tables (less than a few thousand rows), it's often much faster to do a table scan from the get go
Also, from your first execution plan with the "RID heap lookup", I would conclude you don't have a clustered index on the table - add one right away!! Not having a clustered key (thus having a heap instead of a clustered table) also slows down lots of operations and reduces the effectiveness of a non-clustered index.
Try to add your clustered index on a "NUSE" column:
- narrow
- unique
- stable
- ever increasing
INT IDENTITY is a perfect candidate - UNIQUEIDENTIFIER or a very wide compound set of columns are the worst. Read all about choosing the right clustered index at Kimberly Tripp's blog
1410000? – Martin Smith Feb 9 '11 at 18:26sys.indexes. Also do you have auto create statistics and auto update statistics turned on? Also what if you try and force the issueSELECT * FROM tbl_event WITH (INDEX = IDX_Event_Folder) WHERE tbl_event.nobjectid = 1410000– Martin Smith Feb 9 '11 at 20:33