前言
在控制面板-字段修改日志中设置好了字段修改记录日志,但数据库中触发器没有创建成功,查看系统日志提示
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)
经查询,是 log_bin_trust_function_creators 值为 off 导致,因为 Table 中有 Trigger,如果不创建 Trigger,不会出现这样的错误信息,但 Trigger 必须创建,在网络查询解决方案,是如下的办法:
使用设置命令:
1
set global log_bin_trust_function_creators=1;
但由于没有 Super 权限而无法完成。
永久解决方案如下:
2 windows系统,在 my.ini 文件中,[mysqld]部分加上:
log_bin_trust_function_creators=1
就可以创建 Trigger 了
转载请注明:汇站网 » 触发器不能创建,报错 You do not have the SUPER privilege and binary logging is enabled….的解决方法