[Mysql] - ERROR 1418 (HY000): This function has none of DETERMINISTIC 해답
Mysql 2012. 4. 23. 11:48ERROR 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)
1. mysql 서버를 시작할 때 다음 옵션을 추가 한다.
--log-bin-trust-function-creators=1
2. 계정에 접속해서 다음을 실행한다.
mysql>SET GLOBAL log_bin_trust_function_creators = 1;
'Mysql' 카테고리의 다른 글
[Mysql] - DB Create 구문 (0) | 2012.12.27 |
---|---|
[Mysql] - AES_ENCRYPT, AES_DECRYPT 암호화, 복호화 (0) | 2012.11.05 |
[Mysql] - mysql SUBSTRING_INDEX 함수사용법 (0) | 2011.11.23 |
[Mysql] - 날짜 함수 사용법, 예제 (0) | 2011.11.16 |
[Mysql] - CONCAT 쿼리문 Values 에 문자열 추가하기 (0) | 2011.09.07 |