In SQL Server, what options do we have for modifying a query plan when the query uses CONTAINS?

I am getting bad performance and would like to change the query plan for the following query:

SELECT TOP 100 Id, Name, InsertDate
FROM Foo
WHERE CONTAINS([Text], '"hello*" and "goodbye*"')
ORDER BY InsertDate

The query plan seems to be firstly ordering all the entries in the table by InsertDate, then executing the CONTAINS clause, whereas it performs much better if this happens the other way around (first executing the CONTAINS clause, then the other way around).

MORE INFO There is already a clustered index on InsertDate.

There is about 100,000 rows in Foo.

link|improve this question

64% accept rate
1  
query plan is dependent on number of rows in your table. How many rows in your Foo table? Did you try it by making an index on insertDate colomn? – Jayantha May 27 '11 at 5:58
The TOP is requiring the data to be ordered by InsertDate - Jayantha's comment about an index is spot on - make sure you've an index on InsertDate other expect to see a full sort in the query plan. – Will A May 27 '11 at 6:01
Hi thanks guys, I've updated the question in responses to your comments. There is already a clustered index on insert date, and there are about 100,000 rows in Foo. – cbp May 27 '11 at 7:00
we might need to see the query plan then - you should be able to run SET SHOWPLAN_XML ON, and then run this query. Then copy the XML into the question as code. If InsertDate is the clustered index, there shouldn't be another sort occurring during your query, I'd have thought. How many rows, in total, will match your CONTAINS query? – Damien_The_Unbeliever May 27 '11 at 7:19
Have you tried giving SQL a hint to use the proper order by doing CONTAINS in a derived table? Have you tried using a covering index on the SELECTed columns? – Jon Seigel Jul 3 '11 at 3:58
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.