I have a T-SQL query that is causing performance issues. Its a chunky one but the part that seems to be causing an issue is a simple LEFT JOIN.

This can be resolved by removing the left join and using a subquery in the select, however this seems unsatisfactory to me as I can't see why one works quickly and not the other.

Theres not a lot of data involved and there are keys/indexes on all the join columns. Only other thing I was wondering was about statistics on the database and whether they were affecting performance.

For instance (N.b. this is just a simplification of a much more complex query

SLOW

SELECT A.1,A.2,B.3 FROM A LEFT JOIN B ON A.ID = B.ID ...

FAST

SELECT A.1, A.2, (SELECT B.3 FROM B WHERE B.ID = A.ID) FROM A

link|improve this question

73% accept rate
2  
What are the key differences in the execution plans? – Martin Smith Sep 15 '10 at 10:19
You aren't really using ordinal numbers to pick out columns are you? – HLGEM Sep 15 '10 at 13:38
like hlgem said, what's the rest of the first query? – DForck42 Sep 15 '10 at 14:46
No I'm not using ordinal numbers, its a vast simplification of a much more complicated query – AJM Sep 15 '10 at 15:16
feedback

2 Answers

In general a subquery would usually be slower than a left join, so there must be something else going on.

First show the whole query as the problem may be inteh part you used the ... to represent.

Next check your execution plans and see what the difference is. And are you absolutly sure there is an index on the id column. FK constraints do not automatically get indexes created.

Do both queries return the same records? One may be faster because it is not the equivalent of the other one.

link|improve this answer
I'm reasonably sure the prolem is not in the ... as the ... has been in production for a while its just the part above that has changed. – AJM Sep 15 '10 at 15:19
Also have explicit indexes and have verified that query returns the same records. – AJM Sep 15 '10 at 15:19
1  
@AJM - I wouldn't abandon the ... part so quickly. A sub-query in the SELECT clause will be processed logically after all of the FROM clause elements are processed. When you put the LEFT OUTER JOIN in the FROM clause, it's processed in the middle of all of the FROM stuff. The execution plan will show this. – bobs Sep 15 '10 at 18:27
feedback

these two queries may be not equivalent. If your subquery:

(SELECT B.3 FROM B WHERE B.ID = A.ID)

returns more than one row, your left join will just return two rows, but your subquery will blow up complaining that "subquery returned more than one row". If B.ID is unique, does the optimizer know it? Do you have a unique constraint or index on it?

link|improve this answer
Yup had a unique constraint on it – AJM Sep 15 '10 at 15:18
feedback

Your Answer

 
or
required, but never shown

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