2010年9月10日 星期五

查詢和修改MySQL的動態參數設定

查詢參數
EX:
select @@global.sql_mode;
select @@session.sql_mode;

設定參數
set global XXX

set SESSION XXX
不需重新啟動MySQL

EX:
set global expire_logs_days = 2; //設定bin-log的過期時間為2天

參考資料:
http://mysql2.mirrors-r-us.net/doc/refman/5.1/en/dynamic-system-variables.html
http://mysql2.mirrors-r-us.net/doc/refman/5.1/en/set-option.html

沒有留言: