I have three tables

listings: id, pid, beds, baths, etc, etc, etc, db
locations: id, pid, zip, lat, lon, etc, etc, etc, db
images id, pid, height, width, raw, etc, etc, db

id, pid & db are indexed. db just references the mls provider a particular item came from. in images the raw column holds raw image data

there are about 15k rows in listings/locations, and about 120k rows in images so there are multiple rows that have the same pid.

when i do "select pid from listings" or "select pid from locations" the query completes successfully in about 100ms.

when i do "select pid from images" it just hangs in sqlyog and never completes... i was thinking since the raw column contains alot of information that it might be trying to select that too, but my query doesn't try to select that so I can't imagine why it's taking so long...

any idea why this is happening??

link|improve this question

59% accept rate
Have you tried simple troubleshooting like 'select pid from images limit 10;" ? If so, how long does that take? – MJB Apr 11 '10 at 20:26
limit 10, limit 100, limit 1000, limit 10000 work fine.. when i do limit 100000 it does the same thing the regular query does when a limit is not specified. - which is it runs forever then when it finally completes, it says it took 1.3 seconds - when in actuality it took several minutes. – John Apr 11 '10 at 20:36
3  
Sounds strange. Maybe a broken index or data table? Can you try dumping the whole table and re-inserting it in a different database? – Pekka Apr 11 '10 at 20:41
I was actually going to try that but put it all on a different server just to see. Is there a way to check and see if the index is indeed broken? – John Apr 11 '10 at 20:50
1  
Maybe CHECK TABLE finds some problems. dev.mysql.com/doc/refman/5.1/en/check-table.html – VolkerK Apr 11 '10 at 22:37
show 8 more comments
feedback

1 Answer

up vote 0 down vote accepted

Maybe a broken index or data table? Can you try dumping the whole table and re-inserting it in a different database?

(See extended comments and input in the comments)

link|improve this answer
thanks again..... – John Apr 13 '10 at 16:02
feedback

Your Answer

 
or
required, but never shown

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