vote up 4 vote down star
1

Hi,

I've got a table with about 1 million records (running SQL Server 2008 Web). I've got a search routine which tries to match on product code as well as product description. However in some circumstances it's very slow. Below is (cut-down) sql statement:

WITH AllProducts AS (
  SELECT       p.*, Row_Number() OVER (ORDER BY ProductId) AS RowNumber
  FROM        Product AS p 
    WHERE p.IsEnabled=1 AND
    (
      p.BaseSku = 'KPK-3020QWC-C' -- this on its own is fast
      OR
      CONTAINS(p.FreeTextStrings, '"KPK-3020QWC*"') -- and this on its own is fast, but not both
    )
) SELECT * FROM AllProducts        
  WHERE RowNumber BETWEEN 1 AND 20;

Note that if i just compare on [p.BaseSku = 'KPK-3020QWC-C'] or [CONTAINS(p.FreeTextStrings, '"KPK-3020QWC*"')] individually (but not both) its instant. And if i compare them together it takes ages (several minutes) - and returns just one row.

IsEnabled and BaseSku are indexed, and FreeTextStrings is FTS-indexed.

I remember this was working fineb efore.

Can anybody shed any light on this and suggest some solutions?

Execution plan file is available here: http://wiki.webgear.co.nz/GetFile.aspx?File=Temp%5cSearch%20Test.sqlplan.zip

flag

68% accept rate
Can you show us an execution plan from your SQL Server? – marc_s Aug 18 at 5:38
These problems started to occur after upgrading SQL 2005 to SQL 2008. – Muxa Aug 18 at 5:39

3 Answers

vote up 6 vote down check

or is notoriously slow on SQL Server. It's aggravating, to say the least.

Try splitting it up into two queries with a union:

WITH AllProducts AS (
  select *, Row_Number() OVER (ORDER BY ProductId) AS RowNumber
  from (
  SELECT       p.*
  FROM        Product AS p 
    WHERE p.IsEnabled=1 AND
      p.BaseSku = 'KPK-3020QWC-C' 
  UNION
  SELECT       p.*
  FROM        Product AS p 
    WHERE p.IsEnabled=1 AND
      CONTAINS(p.FreeTextStrings, '"KPK-3020QWC*"')
  )
) SELECT * FROM AllProducts        
  WHERE RowNumber BETWEEN 1 AND 20;
link|flag
1  
Exactly, the "or" is most likely causing a table scan on the product table even if there are indexes on both BaseSku and FreeTextStrings... A union will turn that to index seek + index scan... (assuming there are indexes covering those two columns) – KristoferA Aug 18 at 5:48
I've tried that and it indeed has shown great improvements. I'll try this technique with the full sql statement. – Muxa Aug 18 at 5:51
Yep, this has solved it. However i think it's quite strange that the same statement worked very fast in SQL 2005 and is working slow in SQL 2008. May be this would be addressed in the next service pack? – Muxa Aug 18 at 5:58
@Muxa: They did make a lot of improvements with the compiler. or handling was not one of them. I'm with you, though. I sincerely hope this changes soon! – Eric Aug 18 at 6:00
vote up 1 vote down

This seems to work well:

WITH AllProducts AS (
  SELECT       p.*, Row_Number() OVER (ORDER BY ProductId) AS RowNumber
  FROM        Product AS p 
    WHERE p.IsEnabled=1 AND
    (
      CONTAINS(p.BaseSku, 'KPK-3020QWC-C') /* instead of p.BaseSku = 'KPK-3020QWC-C' */
      OR
      CONTAINS(p.FreeTextStrings, '"KPK-3020QWC*"')
    )
) SELECT * FROM AllProducts        
  WHERE RowNumber BETWEEN 1 AND 20;

(I already had BaseSku FTS-indexed)

link|flag
vote up -2 vote down

I'm guessing the string comparisons.

link|flag
4  
with answers like this, you should really think before post it. – balexandre Aug 18 at 6:30
1  
So what's with the OP posting below that changing the string comparison helped? – cheez Aug 18 at 14:57

Your Answer

Get an OpenID
or

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