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 creating and testing a mysql join query but each time so far it causes the database tables to lockup and the site hangs. I have to then call the host and they kill the locked queries. Is this something I can do from phpmyadmin so not to bother them while I tweak the script to work? Thanks for any reply.

share|improve this question

4 Answers

up vote 7 down vote accepted

This can be done from the front page of phpMyAdmin. Look for the "Processes" link.

You can also run the command SHOW PROCESSLIST (or SHOW FULL PROCESSLIST). This will show you all the queries that you are able to manipulate (i.e. your own). Along with each query will be an identifier. You can issue the KILL command to any of those identifiers to kill the query.

Also, you should consider testing your query with EXPLAIN.

share|improve this answer
Thank you, that will do the trick. – jcure Apr 26 '10 at 3:16

I don't know about phpMyAdmin but the free "mysql tools" package contains an application called MySql Adminstrator that lets you do just this. It shows you currently running queries and provides a kill thread button (this is in the server health tab I believe).

Mysql GUI Tools/ Mysql Workbench are far superior to phpMyAdmin anyway. If you're running the database locally, or have ssh access, there's really no reason to use phpMyAdmin.

share|improve this answer
Great advice thanks. I will install that locally and try testing there first. – jcure Apr 26 '10 at 3:17

I don't recall a way to do it from phpmyadmin. You might try testing your query on a local test copy database rather than live so that you get better throughput, until it no longer locks up.

share|improve this answer

You gotta go to the MySQL Processes page and stop/start the server.

Its the only way. (I just did it myself...)

share|improve this answer

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.