Re: Phantom Query

2008-02-21 Thread Dave Fowler
help. That's the only way i would have found it. On Feb 21, 2:27 am, Malcolm Tredinnick <[EMAIL PROTECTED]> wrote: > On Thu, 2008-02-21 at 00:37 -0800, Dave Fowler wrote: > > I have a phantom query that is just killing my database. I have a > > model named Stats and django

Re: Phantom Query

2008-02-21 Thread Malcolm Tredinnick
On Thu, 2008-02-21 at 00:37 -0800, Dave Fowler wrote: > I have a phantom query that is just killing my database. I have a > model named Stats and django is executing the equivalent to > Link.objects.all() in my Stats app. > > # Query_time: 20 Lock_time: 0 Rows_sent: 65952

Re: Phantom Query

2008-02-21 Thread dave fowler
yes, i've taken them all out, even the ones that shouldn't have gotten close to my stats_link table 2008/2/21 Jarek Zgoda <[EMAIL PROTECTED]>: > > Dave Fowler napisał(a): > > > I have a phantom query that is just killing my database. I have a > > model na

Re: Phantom Query

2008-02-21 Thread Jarek Zgoda
Dave Fowler napisał(a): > I have a phantom query that is just killing my database. I have a > model named Stats and django is executing the equivalent to > Link.objects.all() in my Stats app. > > # Query_time: 20 Lock_time: 0 Rows_sent: 659528 Rows_examined: 659528 > SELECT

Phantom Query

2008-02-21 Thread Dave Fowler
I have a phantom query that is just killing my database. I have a model named Stats and django is executing the equivalent to Link.objects.all() in my Stats app. # Query_time: 20 Lock_time: 0 Rows_sent: 659528 Rows_examined: 659528 SELECT `stats_link`.`id`,`stats_link`.`title`,`stats_link`.`url