사용자 도구

사이트 도구


dbms:mysql:admin

MySQL Administrator Tip & Tech

mysqldump : table crashed and locked

  1. mysqldump 명령으로 백업을 받을때, 아래와 같은 메세지가 나오면서 진행이 되지 않을 경우. (mytablename은 해당 테이블명이다)
    mysqldump: Got error: 144: Table 'mytablename' is marked as crashed and last (automatic?) repair failed when using LOCK TABLES
  2. MySQL Database root 사용자로 로그인 한 후 다음 명령을 입력한다.
    mysql> repair table 'mytablename';
    mysql> unlock tables;
dbms/mysql/admin.txt · 마지막으로 수정됨: 2011/11/15 00:24 저자 starlits