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.
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 yourCONTAINSquery? – Damien_The_Unbeliever May 27 '11 at 7:19CONTAINSin a derived table? Have you tried using a covering index on theSELECTed columns? – Jon Seigel Jul 3 '11 at 3:58