본문 바로가기
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)

by 신군. 2022. 5. 26.
반응형

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;

 

다시 실행시 해결

반응형