Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am attempting to refactor several old pieces of code... I have refactored the current piece below and have highlighted the NOT IN statement causing performance issues. I am attempting to rewrite the NOT IN section with a left outer join.

Can anyone help, or suggest a better way if possible?

SELECT 
    left(unique_id,16) AS casino_id , 
    right(unique_id,24) AS game_id   
FROM (  
        SELECT 
            distinct o.casino_id + g.game_id AS unique_id      
        FROM 
            game g INNER JOIN Bet b
            ON g.game_id = b.game_id
            INNER JOIN CasinoUser u 
            ON b.user_id = u.user_id
            INNER JOIN onewalletcasino o  
            ON u.casino_id = o.casino_id
        WHERE 
            game_start between dateadd(mi, -180, getdate()) 
            and dateadd(mi, -5, getdate())  
            and b.[status] <> 'P'
     ) t 
WHERE  
   unique_id NOT in  
    ( SELECT casino_id + game_id  AS casino_id 
      FROM 
        thirdpartysettlecalled  
      WHERE 
        [status] = 'Y')
ORDER BY casino_id 
share|improve this question
1  
On the last line I am guessing that [Status] can also be 'N' so simply take out the 'NOT' and replace 'Y' with 'N' thus eliminating the NOT ? – Stuart Blackler Jul 21 '11 at 9:57
6  
I bet 0.01$ that NOT IN is not the problem. – ypercube Jul 21 '11 at 9:59
i have been replying to answers,voting up a couple but my rating has not appeared, think I was not completing it correctly but I was taking time to thanks people.. maybe u have a little too much time to write these comments and provide no answer! – Chris Wood Jul 21 '11 at 10:17
4  
Insulting the people that would help you is not the way to go. – Jacob Jul 21 '11 at 10:19
1  
@Chris Wood: we chimps can exchange our Stackoverflow points for food pellets or sexual favors. – Tim Jul 21 '11 at 10:52
show 5 more comments

2 Answers

up vote 3 down vote accepted

You have a column concatenation which prevents any use of indexes

Try NOT EXISTS which will support the 2 columns separately

SELECT distinct
     o.casino_id, g.game_id
FROM 
    game g 
    INNER JOIN 
    Bet b ON g.game_id = b.game_id
    INNER JOIN
    CasinoUser u ON b.user_id = u.user_id
    INNER JOIN
    onewalletcasino o  ON u.casino_id = o.casino_id
WHERE 
    game_start between dateadd(mi, -180, getdate()) 
                       and dateadd(mi, -5, getdate())  
    and
    b.[status] <> 'P'
    AND
    NOT EXISTS (SELECT *
           FROM 
              thirdpartysettlecalled   tp
           WHERE 
              tp.[status] = 'Y'
              AND
              tp.casino_id = o.casino_id AND tp.game_id = g.game_id)
ORDER BY
    casino_id 

After that, check your indexes or course...

This is a good use of EXCEPT too (ORDER BY goes at end like UNION: thanks to @Damien_The_Unbeliever)

SELECT distinct
     o.casino_id, g.game_id
FROM 
    game g 
    INNER JOIN 
    Bet b ON g.game_id = b.game_id
    INNER JOIN
    CasinoUser u ON b.user_id = u.user_id
    INNER JOIN
    onewalletcasino o  ON u.casino_id = o.casino_id
WHERE 
    game_start between dateadd(mi, -180, getdate()) 
                       and dateadd(mi, -5, getdate())  
    and
    b.[status] <> 'P'

EXCEPT
SELECT tp.casino_id, tp.game_id
FROM thirdpartysettlecalled   tp
WHERE tp.[status] = 'Y'

ORDER BY
    casino_id
share|improve this answer
Doesn't NOT logic still invalidate the use of indexes with the exist statement? or is that only in the where statement? – Stuart Blackler Jul 21 '11 at 11:03
Related DBA question: dba.stackexchange.com/questions/4009/… – Stuart Blackler Jul 21 '11 at 11:52
1  
(EXCEPT) - ORDER BY goes at the end of the whole thing, as with UNION – Damien_The_Unbeliever Jul 21 '11 at 13:01
@SBlackler: added an answer on dba.se – gbn Jul 21 '11 at 14:45

A brief, passing by, google search yields this. But you've already tried that, didn't you?

share|improve this answer
That link is rubbish. What about NOT EXISTS or EXCEPT? NOT IN is always false if there are any NULLs in the sub query – gbn Jul 21 '11 at 11:02
This is a proper link explainextended.com/2009/09/15/… – gbn Jul 21 '11 at 11:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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