美文网首页
2018-06-07-检查sql语句占用多大内存和耗时

2018-06-07-检查sql语句占用多大内存和耗时

作者: 一杯清茶如沐清风 | 来源:发表于2018-06-07 16:52 被阅读0次

    检查sql语句占用多大内存和耗时;

    主要是用到information_schema库

    命令:select p.user,p.host,p.ID,p.memory_used,t.trx_started,p.INFO from information_schema.processlist as p inner join information_schema.innodb_trx as t on t.trx_mysql_thread_id=p.ID order by t.trx_started desc limit 10 ;

    检查目前系统打开了哪些表

    show open tables;

    检查innodb引擎目前问题点在哪

    show engine innodb status;

    相关文章

      网友评论

          本文标题:2018-06-07-检查sql语句占用多大内存和耗时

          本文链接:https://www.haomeiwen.com/subject/lhbgsftx.html