程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> mysql打開general log的辦法

mysql打開general log的辦法

編輯:MySQL綜合教程


mysql打開general log的辦法   mysql打開general log之後,所有的查詢語句都可以在general log 文件中以可讀的方式得到,但是這樣general log文件會非常大,所以默認 都是關閉的。有的時候為了查錯等原因,還是需要暫時打開general log的。   www.2cto.com     mysql@localhost.(none)>show global variables like "%genera%"; +------------------+------------------------------+ | Variable_name | Value | +------------------+------------------------------+ | general_log | OFF | | general_log_file | /data1/mysql9999/etch171.log | +------------------+------------------------------+ 2 rows in set (0.00 sec)   mysql@localhost.(none)>set global general_log=on; Query OK, 0 rows affected (0.02 sec)   mysql@localhost.(none)>set global general_log=off; Query OK, 0 rows affected (0.00 sec)  

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved