琦猪闯红灯吧 关注:9贴子:561
  • 1回复贴,共1

【Mysql】查询mysql历史命令记录

只看楼主收藏回复



IP属地:陕西1楼2014-02-13 17:36回复
    配置mysql
    # 打开日志
    general_log=1
    # 将日志记录到mysql的table中
    log_output=TABLE
    上面2个配置参数的mysql文档链接
    http://dev.mysql.com/doc/refman/5.1/en/server-system-variables.html#sysvar_general_log
    http://dev.mysql.com/doc/refman/5.1/en/server-system-variables.html#sysvar_log_output
    重启mysql,然后运行
    select * from mysql.general_log;
    就能看到所有运行的SQL语句了
    ************************************************************************
    查询mysql中的某个值
    SHOW VARIABLES LIKE 'XXXX'


    IP属地:陕西2楼2014-02-13 17:47
    回复