I have this query ...which runs extremely slowly (almost a minute):
select distinct main.PrimeId
from PRIME main
join
(
select distinct p.PrimeId from PRIME p
left outer join ATTRGROUP a
on p.PrimeId = a.PrimeId or p.PrimeId = a.RelatedPrimeId
where a.PrimeId is not null and a.RelatedPrimeId is not null
) mem
on main.PrimeId = mem.PrimeId
The PRIME table has 18k rows, and has PK on PrimeId.
The ATTRGROUP table has 24k rows, and has a composite PK on PrimeId, col2, then RelatedPrimeId, and then cols 4-7. There's also a separate index on RelatedPrimeId.
The query eventually returns 8.5k rows - distinct values of PrimeId on the PRIME table that match either PrimeId or RelatedPrimeId on the ATTRGROUP table
I have the identical query, using ATTRADDRESS instead of ATTRGROUP. ATTRADDRESS has an identical key and index structure as ATTRGROUP. It has only 11k rows on it, which is smaller, admittedly, but in that case, the query runs in about a second, and returns 11k rows.
So my question is this:
How can the query be so much slower on one table than another, despite the structures being identical.
So far, I've tried this on SQL 2005, and (using the same database, upgraded) SQL 2008 R2. Two of us have independently obtained the same results, restoring the same backup to two different computers.
Other details:
- the bit inside the brackets runs in less than a second, even in the slow query
- there's a possible clue in the execution plan, which I don't understand. Here's part of it, with a suspicious 320,000,000 row operation:

However, the actual number of rows on that table is a little over 24k, not 320M !
If I refactor the part of the query inside the brackets, so that it uses a UNION rather than an OR, thus:
select distinct main.PrimeId
from PRIME main
join
(
select distinct p.PrimeId from PRIME p
left outer join ATTRGROUP a
on p.PrimeId = a.PrimeId
where a.PrimeId is not null and a.RelatedPrimeId is not null
UNION
select distinct p.PrimeId from PRIME p
left outer join ATTRGROUP a
on p.PrimeId = a.RelatedPrimeId
where a.PrimeId is not null and a.RelatedPrimeId is not null
) mem
on main.PrimeId = mem.PrimeId
... then the slow query takes under a second.
I'd greatly appreciate any insight on this! Let me know if you need any more info and I'll update the question. Thanks!
By the way, I realise that in this example there's a redundant join. This can't easily be removed, since in production the whole thing is generated dynamically, and the bit in the brackets takes many different forms.
Edit:
I've rebuilt the indexes on ATTRGROUP, makes no significant difference.
Edit 2:
If I use a temporary table, thus:
select distinct p.PrimeId into #temp
from PRIME p
left outer join ATTRGROUP a
on p.PrimeId = a.PrimeId or p.PrimeId = a.RelatedPrimeId
where a.PrimeId is not null and a.RelatedPrimeId is not null
select distinct main.PrimeId
from Prime main join
#temp mem
on main.PrimeId = mem.PrimeId
... then again, even with an OR in the original OUTER JOIN, it runs in less than a second. I hate temp tables like this, since it always feels like an admission of defeat, so it isn't the refactor I'll be using, but I thought it was interesting that it makes such a difference.
Edit 3:
Updating the stats makes no difference either.
Thanks for all your suggestions so far.
PrimeIdonATTRGROUPis indeed the primary key for the table, it can't ever be null, so why is that condition ending up in your innerWHEREclause? – Damien_The_Unbeliever Aug 12 '11 at 8:21WHEREclause is restricting the result set to results where eithera.PrimeIdis not null (e.g. the left join succeeded, the value ofa.PrimeIdwill not be null), ora.RelatedPrimeIdis not null (e.g. the left join succeeded, the value ofa.PrimeIdwill not be null). If your left join is restricted byWHEREto always succeed, it's effectively an inner join. – Damien_The_Unbeliever Aug 12 '11 at 12:36