[Linux] mysqldump: got errer : 1146 : table '테이블명' doesn't exist when using LOCK TABLES 해결방법

Posted by nkjok
2024. 4. 5. 15:32 OS&기타/Linux
반응형

Mysql - mysqldump시 LOCK TABLES 오류
mysqldump로 DB 백업시 아래와 같은 오류 메세지가 발생하며 중단되는 경우가 있습니다.
- mysqldump: got errer : 1146 : table '테이블명' doesn't exist when using LOCK TABLES
원인 : 해당 table에 lock이 걸려 있어 덤프가 안되는 문제 입니다.
조치 : mysqldump에 --lock-all-table 옵션을 추가 하여 진행 하면 정상적으로 백업 됩니다.
Ex) mysqldump -u [User] -p --lock-all-tables [DBName] > [dump file name].sql

반응형