Re: Speed issues...

2002-08-02 Thread Tod Harter
> > Organization: Giant Electronic Brain > > Date: Wed, 31 Jul 2002 09:57:20 -0400 > > To: Richard Baskett <[EMAIL PROTECTED]>, MySQL <[EMAIL PROTECTED]> > > Subject: Re: Speed issues... > > > > On Wednesday 31 July 2002 05:17 am, Richard Baskett wrote: > &g

Re: Speed issues...

2002-07-31 Thread Dan Nelson
In the last episode (Jul 31), Richard Baskett said: > Ok I've Analyzed each table and it looks like it has cut around 20 seconds > off of the average time. > > Im trying to figure out how I can take out the left joins.. I need > some of that data to be displayed to the user.. Would it be quicker

Re: Speed issues...

2002-07-31 Thread Richard Baskett
n Nelson <[EMAIL PROTECTED]> > Cc: MySQL <[EMAIL PROTECTED]> > Subject: Re: Speed issues... > > Ok I've Analyzed each table and it looks like it has cut around 20 seconds off > of the average time. > > Im trying to figure out how I can take out the left joins.

Re: Speed issues...

2002-07-31 Thread Richard Baskett
g to cling to the patterns you know inhibits your ability to discover what you don't know." - Eric Allenbaugh > From: MySQL Newsgroup (@Basebeans.com) <[EMAIL PROTECTED]> > Date: Wed, 31 Jul 2002 13:25:02 -0700 > To: [EMAIL PROTECTED] > Subject: Re: Speed issues... &g

Re: Speed issues...

2002-07-31 Thread Richard Baskett
TECTED]> > Cc: MySQL <[EMAIL PROTECTED]> > Subject: Re: Speed issues... > > In the last episode (Jul 31), Richard Baskett said: >> When they are searching sometiems they do not search for Location.. >> When that's the case I leave the location string out, if they d

Re: Speed issues...

2002-07-31 Thread @Basebeans.com
Subject: Re: Speed issues... From: "Jared Richardson" <[EMAIL PROTECTED]> === "Richard Baskett" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED]... > This is my first post here.. So be nice! ;) > > I have a database with a little over 60,000 re

Re: Speed issues...

2002-07-31 Thread Dan Nelson
In the last episode (Jul 31), Richard Baskett said: > When they are searching sometiems they do not search for Location.. > When that's the case I leave the location string out, if they do not > search for Category, I leave the Category string out, but when they > do.. That's the query I get.. The

Re: Speed issues...

2002-07-31 Thread Richard Baskett
egory and JobsLocation first when > they're constrained with LEFT JOIN. > > -- > Dan Nelson > [EMAIL PROTECTED] > > From: Dan Nelson <[EMAIL PROTECTED]> > Date: Wed, 31 Jul 2002 13:42:41 -0500 > To: Richard Baskett <[EMAIL PROTECTED]> > Cc: Tod Harter <[E

Re: Speed issues...

2002-07-31 Thread Dan Nelson
In the last episode (Jul 31), Richard Baskett said: > >> SELECT DISTINCT Location.SortID AS Loc, LocName, JobTitle AS Job, Company > >> AS Comp, Jobs.JobID, Employers.EmpID > >> FROM Employers > >> LEFT JOIN Jobs USING (EmpID) > >> LEFT JOIN JobsLocation USING (JobID) > >> LEFT JOIN Location USING

Re: Speed issues...

2002-07-31 Thread Richard Baskett
MySQL <[EMAIL PROTECTED]> > Subject: Re: Speed issues... > > On Wednesday 31 July 2002 05:17 am, Richard Baskett wrote: >> This is my first post here.. So be nice! ;) > > OK, no flames ;o). > > I'd want a bit more information in order to really diagnose this.

Re: Speed issues...

2002-07-31 Thread Troy Hakala
are there indexes on the right fields? do a "describe" on the query and let us know what you get. On Wednesday, July 31, 2002, at 02:17 AM, Richard Baskett wrote: > This is my first post here.. So be nice! ;) > > I have a database with a little over 60,000 records and when I do a > search > on

Re: Speed issues...

2002-07-31 Thread Tod Harter
On Wednesday 31 July 2002 05:17 am, Richard Baskett wrote: > This is my first post here.. So be nice! ;) OK, no flames ;o). I'd want a bit more information in order to really diagnose this. The first thing I would tell you to do is to EXPLAIN this query. To do that just tack the keyword EXPLAI

Re: Speed issues...

2002-07-31 Thread Roger Baklund
* Richard Baskett > This is my first post here.. So be nice! ;) :) > I have a database with a little over 60,000 records and when I do a search > on that db it takes a little over a minute and a half to return results. That sounds slow, yes. > This is very unacceptable, but Im just not sure wh