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.
|
This can be done from the front page of phpMyAdmin. Look for the "Processes" link. You can also run the command Also, you should consider testing your query with |
|||
|
|
|
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. |
|||
|
|
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. |
|||
|
|
|
You gotta go to the MySQL Processes page and stop/start the server. Its the only way. (I just did it myself...) |
|||
|
|