您好,登錄后才能下訂單哦!
下文內容主要給大家帶來部分mysql常用腳本詳情,這里所講到的知識,與書籍略有不同,都是億速云專業技術人員在與用戶接觸過程中,總結出來的,具有一定的經驗分享價值,希望給廣大讀者帶來幫助。
檢查鎖:
more check_lock.sh #!bin/bash while true do mysql -u root -p123456_ -H < ~/script/check_lock.sql >> ~/script/html/`date +"%Y%m%d"`w11.html sleep 1 done more check_lock.sql SELECT r.trx_id waiting_trx_id, r.trx_mysql_thread_id waiting_thread, r.trx_query waiting_query, b.trx_id blocking_trx_id, b.trx_mysql_thread_id blocking_thread, b.trx_query blocking_query, now() FROM information_schema.innodb_lock_waits w INNER JOIN information_schema.innodb_trx b ON b.trx_id = w.blocking_trx_id INNER JOIN information_schema.innodb_trx r ON r.trx_id = w.requesting_trx_id;
檢查進程
check_proc.sh #!/bin/bash while true do mysql -u root -p123456_ -H < ~/script/check_proc.sql >> ~/script/html/proc_`date +"%Y%m%d%H"`.html sleep 2 done cat check_proc.sql select now(),id,user,host,db,command,time,state,info from information_schema.processlist where command not in ('Sleep','Binlog Dump') and INFO not like '%information_schema.processlist%';
對于以上關于部分mysql常用腳本詳情更新,如果大家還有更多需要了解的可以持續關注我們億速云的行業推新,如需獲取專業解答,可在官網聯系售前售后的,希望該文章可給大家帶來一定的知識更新。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。