From a script I sent a query like this thousands of times to my local database:

update some_table set some_column = some_value

I forgot to add the where part, so the same column was set to the same a value for all the rows in the table and this was done thousands of times and the column was indexed, so the corresponding index was probably updated too lots of times.

I noticed something was wrong, because it took too long, so I killed the script. I even rebooted my computer since them, but something stuck in the table, because simple queries take a very long time to run and when I try dropping the relevant index it fails with this message:

Lock wait timeout exceeded; try restarting transaction

It's an innodb table, so stuck the transaction is probably implicit. How can I fix this table and remove the stuck transaction from it?

Edit: I solved the problem by dropping the table and restoring it from backup.

link|improve this question

What is the output of SHOW FULL PROCESSLIST? – WoLpH May 4 '10 at 15:48
It shows only the SHOW FULL PROCESSLIST command, nothing else. It's a local development database. Nothing is running on it. I got the 'lock wait..' error message on the command line when I tried dropping the index from there. – Tom May 4 '10 at 15:55
In that case you are probably creating 2 separate connections in different transactions that have to wait for eachother. – WoLpH May 4 '10 at 17:01
I didn't create any transactions afterwards. I killed the script, rebooted the machine and logged in from the command line to look around. Nothing else used the database except for the mysql command line client, so something must have been stuck in the table. – Tom May 4 '10 at 18:24
Thanks for this - just saved me a bunch of headache to not pull my hair and reinstall the server. I thought that something were seriously wrong :) – Industrial Dec 1 '10 at 21:49
feedback

5 Answers

up vote 0 down vote accepted

I solved the problem by dropping the table and restoring it from backup.

link|improve this answer
feedback

I ran into the same problem with an "update"-statement. My solution was simply to run through the operations available in phpMyAdmin for the table. I optimized, flushed and defragmented the table (not in that order). No need to drop the table and restore it from backup for me. :)

link|improve this answer
It might solve the problem. But having to do this every time such error occurs can't be a solution for a LIVE production server...... How can we output this deadlock handling? Or how can we AVOID this deadlock from happening? – syedrakib 2 days ago
feedback

I had the same issue. I think it was a deadlock issue with SQL. You can just force close the SQL process from Task Manager. If that didn't fix it, just restart your computer. You don't need to drop the table and reload the data.

link|improve this answer
It solves the problem. But this can't be a solution for a LIVE production server...... How can we output this deadlock handling? Or how can we AVOID this deadlock from happening? – syedrakib 2 days ago
feedback

I had this problem when trying to delete a certain group of records (using MS Access 2007 with an ODBC connection to MySQL on a web server). Typically I would delete certain records from MySQL then replace with updated records (cascade delete several related records, this streamlines deleting all related records for a single record deletion).

I tried to run through the operations available in phpMyAdmin for the table (optimize,flush, etc), but I was getting a need permission to RELOAD error when I tried to flush. Since my database is on a web server, I couldn't restart the database. Restoring from a backup was not an option.

I tried running delete query for this group of records on the cPanel mySQL access on the web. Got same error message.

My solution: I used Sun's (Oracle's) free MySQL Query Browser (that I previously installed on my computer) and ran the delete query there. It worked right away, Problem solved. I was then able to once again perform the function using the Access script using the ODBC Access to MySQL connection.

link|improve this answer
feedback

Goto processes in mysql.

So can see there is task still working.

Kill the the particular process or wait until process complete.

link|improve this answer
It solves the problem. But this can't be a solution for a LIVE production server...... How can we output this deadlock handling? Or how can we AVOID this deadlock from happening? – syedrakib 2 days ago
feedback

Your Answer

 
or
required, but never shown

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