zoukankan      html  css  js  c++  java
  • Mysql报Deadlock found when trying to get lock; try restarting transaction问题解决

    Mysql报Deadlock found when trying to get lock; try restarting transaction问题解决!!

    事务1 begin;                                                                     事务2begin;

    select * from a where id = 1 for update;

                                                       select * from a where id = 2 for update;

    select * from a where id = 2 for update; lock wait 锁等待

                                                                                                   select * from a where id = 1 for update;    (  执行完就i报:Deadlock found when trying to get lock; try restarting transaction)

    这个时候事务2 被干掉了,只剩下了事务1

    select * from information_schema.INNODB_TRX
    trx_mysql_thread_id

    kill 进程ID


    原文链接:https://blog.csdn.net/qq_44240587/article/details/108400666

  • 相关阅读:
    第7次实践作业 25组
    第6次实践作业 25组
    第5次实践作业
    第4次实践作业
    第3次实践作业
    第2次实践作业
    第1次实践作业
    软工实践个人总结
    2019 SDN大作业
    C语言Il作业01
  • 原文地址:https://www.cnblogs.com/lqmblog/p/15506550.html
Copyright © 2011-2022 走看看