mysql日常维护
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql日常维护相关的知识,希望对你有一定的参考价值。
查看mysql运行进程 mysql>show processlist; 查看Innodb引擎运行情况: mysql>show engine innodb status\G 查看MySQL参数情况: mysql>show [global] variables like ‘%innodb%‘; 查看MySQL运行状态: mysql>show [global] status like ‘%thread%‘; 查看表、存储过程、触发器: mysql>show tables; mysql>show procedure status; show create procedure USP_Cursor; mysql>show triggers; show create trigger TRI_UP_User_Delete; 查看MySQL帮助: mysql>help; mysql>help conntents; mysql>help show; |
本文出自 “xinsz08の平行时空” 博客,请务必保留此出处http://xinsz08.blog.51cto.com/10565212/1915910
以上是关于mysql日常维护的主要内容,如果未能解决你的问题,请参考以下文章