mysql 1418無法創建函數的解決方法
ErrorCode:1418
ThisfunctionhasnoneofDETERMINISTIC,NOSQL,orREADSSQLDATAinitsdeclarationandbinaryloggingisenabled(you*might*wanttousethelesssafelog_bin_trust_function_creatorsvariable)
(0mstaken)
www.2cto.com
解決方法如下:
1. mysql> SET GLOBAL log_bin_trust_function_creators = 1;
2. 系統啟動時 --log-bin-trust-function-creators=1
3. 在my.ini(linux下為my.conf)文件中 [mysqld] 標記後加一行內容為 log-bin-trust-function-
creators
如果在create function的時候有 1418的錯語的時候:那麼只需要執行set global log_bin_
trust_routine_creators=1;
然後怎麼create function 都不會有問題(當然,你的function必段正確哦),這是mysql的一個bug,
搞不懂為什麼,反正這樣做就OK了.
另外,也可以直接在配置文件my.cnf中添加如下行[mysqld] log_bin_trust_routine_creators=1;
這個命令可以在sql editor的環境中運行,並不需要重新啟動服務哦。