Home > Database > Mysql Tutorial > Mysql进程查看showprocesslist_MySQL

Mysql进程查看showprocesslist_MySQL

WBOY
Release: 2016-06-01 13:18:57
Original
981 people have browsed it

bitsCN.com

show processlist,用来显示哪些线程在运行。

1.如果是SUPER权限,可以看到所有的线程;

2.如果是单独的用户,只能看到自己的线程;

3.如果不适用FULL,则只显示每个查询的前100个字符

4.如果有线程在update或者insert 某个表,此时进程的status为updating 或者 sending data。

 

/

 

这个命令中最重要的是state列,mysql列出的状态主要有以下几种:

Checking table

检查数据表

Closing table

正在将表中修改的数据刷新到磁盘中,同时正在关闭已经用完的表。这是一个很快的操作,如果不是这样的话,就应该确认磁盘空间是否已经满了或者磁盘是否正处于重负中。

Sending Date

正在处理SELECT查询的记录,同时正在把结果发送给客户端。

Updating

正在搜索匹配的记录,并且修改它们。

bitsCN.com
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template