Mysql 테이블 크래쉬가 날때, check table 명령으로 체크해 봅니다.
mysql> check table n2_fileman_rtree; --빨간색이 테이블명입니다.
+--------------------------+-------+----------+---------------------------------------------------------------------------------------------+
| Table | Op | Msg_type | Msg_text |
+--------------------------+-------+----------+---------------------------------------------------------------------------------------------+
| nblogTW.n2_fileman_rtree | check | error | Table './nblogTW/n2_fileman_rtree' is marked as crashed and last (automatic?) repair failed |
+--------------------------+-------+----------+---------------------------------------------------------------------------------------------+
mysql> repair table n2_fileman_rtree;
+--------------------------+--------+----------+----------+
| Table | Op | Msg_type | Msg_text |
+--------------------------+--------+----------+----------+
| nblogTW.n2_fileman_rtree | repair | status | OK |
+--------------------------+--------+----------+----------+
1 row in set (0.04 sec)
mysql> !check
-> ;
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '!check' at line 1
mysql> check table n2_fileman_rtree;
+--------------------------+-------+----------+----------+
| Table | Op | Msg_type | Msg_text |
+--------------------------+-------+----------+----------+
| nblogTW.n2_fileman_rtree | check | status | OK |
+--------------------------+-------+----------+----------+
1 row in set (0.00 sec)
mysql> desc n2_fileman_rtree;
+-------------+----------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+-------------+----------+------+-----+---------+-------+
| tree_seq | int(20) | NO | PRI | | |
| up_tree_seq | int(20) | NO | PRI | | |
| m_userno | int(20) | NO | PRI | | |
| m_userid | char(20) | NO | | | |
+-------------+----------+------+-----+---------+-------+
4 rows in set (0.00 sec)
mysql> exit
'DB관련 > MySQL' 카테고리의 다른 글
YEAR() MONTH() 함수로 WHERE 검색 조건에 년, 월 기준으로 검색 조건 결과 얻는 방법 (0) | 2014.10.31 |
---|---|
[MySQL] 2개의 테이블 count(*) 합하기 (2개의 테이블 데이터 갯수 합산) (0) | 2011.08.03 |
MySQL root passwd forget 암호 변경법 (0) | 2011.07.14 |
[SQL] order by 정렬 두개 필드 주기 (0) | 2010.10.28 |
DECODE 함수 (0) | 2009.01.12 |
[펌]mysql 한달전 데이터 삭제(Shell code , sql query) (0) | 2008.10.23 |
[펌]mysql 깨진 테이블 복구하기 (0) | 2008.07.14 |
[JSP]DB컨넥션풀 snaq.net (0) | 2008.02.01 |
(로그인하지 않으셔도 가능)