zoukankan      html  css  js  c++  java
  • 两种方式:mysql查看正在执行的sql语句

    mysql查看正在执行的sql语句

    有2个方法:

    1、使用processlist,但是有个弊端,就是只能查看正在执行的sql语句,对应历史记录,查看不到。好处是不用设置,不会保存。

    -- use information_schema;
    -- show processlist;
    或者:
    -- select * from information_schema.`PROCESSLIST` where info is not null;
    • 1
    • 2
    • 3
    • 4

    2、开启日志模式

    -- 1、设置
    -- SET GLOBAL log_output = 'TABLE';  SET GLOBAL general_log = 'ON';
    -- SET GLOBAL log_output = 'TABLE';  SET GLOBAL general_log = 'OFF';
    
    -- 2、查询
    SELECT * from mysql.general_log ORDER BY    event_time DESC
    
    -- 3、清空表(delete对于这个表,不允许使用,只能用truncate)
    -- truncate table mysql.general_log;
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
  • 相关阅读:
    iOS -一些常用的方法
    handoff了解
    UIlabel
    扩展运行机制
    github -- fork提交项目
    iOS
    AppDelegate解析
    KVC
    KVO
    xcode升级后, 插件失效修复
  • 原文地址:https://www.cnblogs.com/duanweishi/p/9576469.html
Copyright © 2011-2022 走看看