mysql 创建fucntion或者procedure

转载: http://www.2cto.com/database/201307/227471.html

log_bin_trust_function_creators错误解决

当有mysql本地或远程建立function或procedure时报上面的错误
经试验是log_bin_trust_function_creators值为off导致

设置:

set global log_bin_trust_function_creators=1;



但重启后失效

永久解决方案

windows下my.ini[mysqld]加上log_bin_trust_function_creators=1

linux下/etc/my.cnf下my.ini[mysqld]加上log_bin_trust_function_creators=1



保存 ,重启服务器。

猜你喜欢

转载自963630220-qq-com.iteye.com/blog/2003488