Big Data/RDBMS
ERROR 1418 (HY000) at line 244: 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)
신군.
2022. 5. 26. 11:53
반응형

mysql -u root -p testdb < backup_testdb.sql

show global variables like 'log_bin_trust_function_creators';

SET GLOBAL log_bin_trust_function_creators = 1;
다시 실행시 해결
반응형