mysql 報錯This function has none of DETERMINISTIC處理方案。本站提示廣大學習愛好者:(mysql 報錯This function has none of DETERMINISTIC處理方案)文章只能為提供參考,不一定能成為您想要的結果。以下是mysql 報錯This function has none of DETERMINISTIC處理方案正文
本文章向冤家們引見開啟bin-log日志mysql報錯:This function has none of DETERMINISTIC, NO SQL處理方法,
創立存儲進程時
出錯信息:
ERROR 1418 (HY000): This function has none of DETERMINISTIC, NO SQL, or READS SQL DATA in its declaration and binary logging is enabled (you *might* want to use the less safe log_bin_trust_function_creators variable)
緣由:
這是我們開啟了bin-log, 我們就必需指定我們的函數能否是
1 DETERMINISTIC 不確定的
2 NO SQL 沒有SQl語句,當然也不會修正數據
3 READS SQL DATA 只是讀取數據,當然也不會修正數據
4 MODIFIES SQL DATA 要修正數據
5 CONTAINS SQL 包括了SQL語句
其中在function外面,只要 DETERMINISTIC, NO SQL 和 READS SQL DATA 被支持。假如我們開啟了 bin-log, 我們就必需為我們的function指定一個參數。
處理辦法:
SQL code mysql> show variables like 'log_bin_trust_function_creators'; +---------------------------------+-------+ | Variable_name | Value | +---------------------------------+-------+ | log_bin_trust_function_creators | OFF | +---------------------------------+-------+ mysql> set global log_bin_trust_function_creators=1; mysql> show variables like 'log_bin_trust_function_creators'; +---------------------------------+-------+ | Variable_name | Value | +---------------------------------+-------+ | log_bin_trust_function_creators | ON |
這樣添加了參數當前,假如mysqld重啟,那個參數又會消逝,因而記得在my.cnf配置文件中添加:
log_bin_trust_function_creators=1
感激閱讀,希望能協助到大家,謝謝大家對本站的支持!