question

rakeshsql avatar image
rakeshsql asked

how to convert index scan to index seek.

I have an execution plan in which clustered index scan is costing 93%. i wan to convert that to index seek. what steps need to be performed?
execution-planclustered-index
2 comments
10 |1200

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

ThomasRushton avatar image ThomasRushton ♦♦ commented ·
Can you share your query and execution plan?
0 Likes 0 ·
Grant Fritchey avatar image Grant Fritchey ♦♦ commented ·
You have several answers below. For each of those answers that are helpful you should click on the thumbs up next to the answers so that it turns green. If any one of the answers below lead to a solution to your problem, click on the check mark next to that one answer so that it turns green. This web site works best if you do the voting and marking of answers so that the next person who looks at your question knows what the solution was.
0 Likes 0 ·
ThomasRushton avatar image
ThomasRushton answered
It rather depends on your query, your indexes, and how you're accessing the data from the indexed field. Without seeing either, the best we can do is direct you to the concept of "SARGability" - [see Rob Farley's introduction][1]. [1]: http://sqlblog.com/blogs/rob_farley/archive/2010/01/22/sargable-functions-in-sql-server.aspx
10 |1200

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

JohnSterrett avatar image
JohnSterrett answered
Thomas brings up some great points. I would also like to point out that the percentage of data being returned from a table or the amount of data a scan can be better than a seek. Also proper updated statistics is key to helping the optimizer build good enough execution plans. For example if you are joining two tables and one has 10k records and you need 9k then it can be much faster to do one scan to get the 9k than do 9k lookups on a seek. Also, if you have a very small amount of data in the table there really is no difference between a scan or seek. Think of small lookup tables like states in the US. I would recommend taking a good look at this blog post by Thomas LaRock. It goes over a great strategy for learning how to do indexing where its needed for a query. http://thomaslarock.com/2010/11/mr-larock-goes-to-washington/
10 |1200

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

rakeshsql avatar image
rakeshsql answered
![alt text][1] [1]: /storage/temp/2778-1.jpg

1.jpg (80.7 KiB)
10 |1200

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

JohnSterrett avatar image
JohnSterrett answered
Looking at the execution plan it looks like the plan is estimating that your scan is going to need 415 million rows. A scan makes sense here because you most likely are past the tipping point where a seek could improve performance. I would take a look at your filters for that table to just make sure that there is an index on them that also covers the columns needed for selectivity. If you want attach the actual XML plan and the list of indexes for that table and I would be happy to take a quick look for you.
10 |1200

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.