赞
踩
思维导图
架构图
此工具默认是禁用的,可以通过服务器变量在绘画级别动态的修改
格式: mysql -h 主机地址 -u 用户名 -p 用户密码
show databases;
use 数据库名称
show tables;
show variables like ‘have_profiling’;
±---------------±------+
| Variable_name | Value |
±---------------±------+
| have_profiling | NO |
±---------------±------+
set profiling=1;
select * from emp;
show profiles;
show profile for query n;
MySQL的performance schema 用于监控MySQL server在一个较低级别的运行过程中的资源消耗、资源等待等情况。
在mysql的5.7版本中,性能模式是默认开启的,如果想要显式的关闭的话需要修改配置文件,不能直接进行修改,会报错Variable ‘performance_schema’ is a read only variable。
SHOW VARIABLES LIKE ‘performance_schema’;
±-------------------±----------------+
| Variable_name | Value |
±-------------------±---------------+
| performance_schema
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。