2018년 10월 6일 토요일

[Mysql] 테이블 Repair 에러 수정

Mysql 수행 시 table 'table_name' is marked as crashed and should be repaired 와 같은 에러가 발생했다.

해당 에러 수정 방법

우선 해당 DB를 백업 합니다.

mysql> check table 'table_name';

해당 테이블에 관련된 에러를 확인 할 수 있습니다.

mysql> repair table 'table_name';

해당 테이블의 에러를 수정한다.

repair status 'OK'로 완료가 되었다면 수정이 정상적으로 이루어 진것이다.

mysql> check table 'table_name';

다시 확인 하면 에러가 없음을 확인 할 수 있다.

댓글 없음:

댓글 쓰기