October 11, 2007 at 10:59 am
Values being pulled from temp table. The table has around 12,000 rows. There is a non-clustered index on eac mentioned column.
Can take over two minutes to complete.
SELECT a.ReceivedDate ss,
AVG(DATEDIFF(day, b.ReceivedDate, a.ReceivedDate)) [GreenAvg]
FROM #Data a
JOIN#Data b
ON b.ReceivedDate <= a.ReceivedDate
AND(b.ReturnDate >= a.ReceivedDate
OR b.ReturnDate IS NULL)
GROUP BY a.ReceivedDate
October 11, 2007 at 11:38 am
maybe 2 things:
1) provide indexes (2) for the dates, to support you and grouping
2) If you know you don't need to process the whole table , add an extra where clause to delimit the resultsets.
Johan
Learn to play, play to learn !
Dont drive faster than your guardian angel can fly ...
but keeping both feet on the ground wont get you anywhere :w00t:
- How to post Performance Problems
- How to post data/code to get the best help[/url]
- How to prevent a sore throat after hours of presenting ppt
press F1 for solution, press shift+F1 for urgent solution 😀
Need a bit of Powershell? How about this
Who am I ? Sometimes this is me but most of the time this is me
October 11, 2007 at 11:54 am
How long does it take without the indexes?
Greg
_________________________________________________________________________________________________
The glass is at one half capacity: nothing more, nothing less.
October 11, 2007 at 4:32 pm
Thanks for the suggestions.
ALZDBA, I was able to add a where clause and that did help a bit.
Greg, the times are all over.
With index I got 1:05 and 2:20.
Without I got 0:41, 0:35, 0:24.
I then dropped and re-created the table again without the indexes and got 0:24.
I then dropped and re-created the table back with the indexes and got 0:46 and 0:44.
I tried one idex at a time as well but the results are sporadic.
October 11, 2007 at 7:29 pm
You've managed, quite nicely, to build a partially exclusive Cartesian Join known as a "double triangle" join. Please see the following post...
http://www.sqlservercentral.com/Forums/Topic359124-338-1.aspx#bm360151
You need some other criteria, hopefully and equi-join, to get better performance. If no other criteria is possible, then you're kinda stuck with what you have.
--Jeff Moden
Change is inevitable... Change for the better is not.
Viewing 5 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic. Login to reply