首页 > 代码库 > 执行 update操作的时候有报错 ERROR 1205 (HY000): Lock wait timeout exceeded; try restarting transaction

执行 update操作的时候有报错 ERROR 1205 (HY000): Lock wait timeout exceeded; try restarting transaction

mysql> show full processlist;
#查看问题的线程!!!!

找到异常进程的ID

然后kill 掉:

mysql> kill xxxxxxx; #xxxxxx是ID号

然后再次执行update执作,问题解决!!

执行 update操作的时候有报错 ERROR 1205 (HY000): Lock wait timeout exceeded; try restarting transaction