1. 程式人生 > >mysql建立觸發器失敗

mysql建立觸發器失敗

報錯資訊

  You do not have the SUPER privilege and binary logging is enabled (you *might* want to to use the less safe log_bin_trust_function_creators variable)

使用設定命令: 

  set global log_bin_trust_function_creators=1;

永久解決方案如下:

  1 linux系統, 在/etc/my.cnf 檔案中,[mysqld]部分加上:

  2 windows系統,在my.ini檔案中,[mysqld]部分加上:

  log_bin_trust_function_creators=1

就可以建立Trigger了