도구
MySQL Workbench Safe mode 설정 변경
^..^v
2019. 1. 23. 10:45
728x90
반응형
MySQL Workbench에서 아래와 같은 오류가 발생하는 경우 Safe mode를 해제해 줍니다.
Error Code: 1175. You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column To disable safe mode, toggle the option in Preferences -> SQL Editor and reconnect.
Safe mode 해제 방법은 다음과 같습니다.
1. SET 명령어 이용
SET SQL_SAFE_UPDATES = 0;
2. MySQL Workbench 옵션 변경
Edit > Preferences ... > SQL Editor > "Safe Updates" 해제
728x90
반응형