2011. 10. 6. 22:48
DB/MySQL
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)
show global variables like 'log_bin_trust_function_creators';
off 일경우
SET GLOBAL log_bin_trust_function_creators = 'ON';
또는
SET GLOBAL log_bin_trust_function_creators = 1;
'DB > MySQL' 카테고리의 다른 글
group_concat size (0) | 2013.06.04 |
---|---|
char와 varchar 차이점 (0) | 2011.10.31 |
컬럼 추가, 컬럼명 변경 (0) | 2011.09.24 |
MySQL 다운로드 (0) | 2011.09.19 |
MySQL 버전 확인 (0) | 2010.11.24 |