第一種:
1.查詢是否鎖表
show open tables where in_use > 0;
2.查詢程序(如果您有super許可權,您可以看到所有執行緒。否則,您只能看到您自己的執行緒)
show processlist
3.殺死程序id(就是上面命令的id列)
kill id
第二種:
1.檢視下在鎖的事務
select * from information_schema.innodb_trx;
select * from information_schema.processlist
2.殺死程序id(就是上面命令的trx_mysql_thread_id列)
kill 執行緒id
例子: select concat('kill ',trx_mysql_thread_id,';') from information_schema.innodb_trx;
查出死鎖程序:show processlist
其它關於檢視死鎖的命令:
1:檢視當前的事務
select * from information_schema.innodb_trx;
2:檢視當前鎖定的事務
select * from information_schema.innodb_locks;
3:檢視當前等鎖的事務
select * from information_schema.innodb_lock_waits;
mysql 解除死鎖 mysql檢視死鎖和解除鎖
解除正在死鎖的狀態有兩種方法 第一種 1.查詢是否鎖表 show open tables where in use 0 2.查詢程序 如果您有super許可權,您可以看到所有執行緒。否則,您只能看到您自己的執行緒 show processlist 3.殺死程序id 就是上面命令的id列 kill i...
mysql 解除正在死鎖的狀態
解除正在死鎖的狀態有兩種方法 第一種 1.查詢是否鎖表 show open tables where in use 0 2.查詢程序 如果您有super許可權,您可以看到所有執行緒。否則,您只能看到您自己的執行緒 show processlist show processlist 只列出前100條,...
解除Oracle死鎖
解除oracle死鎖 1.查詢資料庫死鎖語句 select t2.username t2.sid t2.serial t2.logon time t3.sql text from v locked object t1,v session t2,v sqltext t3 where t1.sessio...