Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Should be a pretty straight forward question. Can I add an INDEX to a Common Table Expression (CTE)?

share|improve this question
3  
It might be sort of possible with some messing around with plan guides. This article by Quassnoi shows how to use a plan guide to get the results of a CTE cached by adding an EagerSpool to the plan. This builds a temporary index over them in tempdb. – Martin Smith Oct 22 '10 at 12:08
1  
@Martin Smith: WOW!!! I will have a good read of that and try and get my head around it all :) – Neil Knight Oct 22 '10 at 12:51

2 Answers

up vote 5 down vote accepted

No.

A CTE is a temporary, "inline" view - you cannot add an index to such a construct.

If you need an index, create a regular view with the SELECT of your CTE, and make it an indexed view (by adding a clustered index to the view). You'll need to obey a set of rules outlined here: Creating an Indexed View.

share|improve this answer
1  
Thanks. I wasn't sure as Bing-ing didn't show anything and neither did Googl-ing. – Neil Knight Oct 22 '10 at 11:29
1  
What about Lycos-ing? – Mike Cole Mar 6 at 22:30

I have had the same requirement. Indexes can not be added to a CTE. However, in the CTE select adding an ORDER BY clause on the joined fields reduced the execution time from 20 minutes or more to under 10 seconds.

(You need to also ADD SELECT TOP 100 PERCENT to allow an ORDER BY in a CTE select.)

share|improve this answer
Where'd you learn such voodoo? It has a remarkable effect on a long-running query we had. Top 100000 works better than Top 100 PERCENT. I'm going to start digging into the query analyzer to see what's going on. Thanks! – BlackjacketMack Sep 8 '12 at 1:35
That is very interesting and good to know. I changed my query from top 1000000 to top 100 PERCENT. I will change it back. I came across post on MSDN with this hint when trying to index a CTE for perforance. – Richard Vivian Sep 8 '12 at 5:14
TOP 100 PERCENT might use the number of estimated records to return. TOP 1000000 might think that there will be more and reserve more memory to the execution so that there are no Sort Warnings and spills to TempDB. – mceda Oct 22 '12 at 10:17
When you say in the CTE select, do you mean the select that's creating the CTE, or the select that's using the CTE? – Mike Cole Mar 6 at 22:35
The select creating the CTE. That orders the data in the CTE for efficient use in the subsequent query. – Richard Vivian Mar 8 at 12:32
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.