티스토리 뷰
728x90
반응형
시나리오
check table란?
테이블의 오류를 검사하는 기능
MyISAM, Innodb테이블만 가능함,
MyISAM 테이블이라면, mysqld가 실행되고 있지 않을 경우에 쉘 프롬프트에서 myisamchk -m tbl_name
과 기능이 같다.
테이블의 오류를 검사하는 기능
MyISAM, Innodb테이블만 가능함,
MyISAM 테이블이라면, mysqld가 실행되고 있지 않을 경우에 쉘 프롬프트에서 myisamchk -m tbl_name
과 기능이 같다.
정보
【형식】
CHECK TABLE tbl_name[,tbl_name...] [option [option...]]
여기서 option=QUICK ¦ FAST ¦ MEDIUM ¦ EXTENDED ¦ CHANGED이며,
디폴트는 MEDIUM임
【예제】
mysql> show databases;
+----------+
| Database |
+----------+
| jijoeDB |
| mysql |
| test |
+----------+
3 rows in set (0.00 sec)
mysql> use jijoeDB;
Database changed
mysql> show tables;
+-------------------+
| Tables_in_jijoeDB |
+-------------------+
| aa |
+-------------------+
1 row in set (0.00 sec)
mysql> check table aa;
+------------+-------+----------+----------+
| Table | Op | Msg_type | Msg_text |
+------------+-------+----------+----------+
| jijoeDB.aa | check | status | OK |
+------------+-------+----------+----------+
1 row in set (0.01 sec)
mysql> check table aa quick;
+------------+-------+----------+----------+
| Table | Op | Msg_type | Msg_text |
+------------+-------+----------+----------+
| jijoeDB.aa | check | status | OK |
+------------+-------+----------+----------+
1 row in set (0.00 sec)
mysql> check table aa fast;
+------------+-------+----------+-----------------------------+
| Table | Op | Msg_type | Msg_text |
+------------+-------+----------+-----------------------------+
| jijoeDB.aa | check | status | Table is already up to date |
+------------+-------+----------+-----------------------------+
1 row in set (0.00 sec)
여기서 Table is already up to date는 더이상 테이블을 체크할 필요가 없음을 의미함
mysql> check table aa changed;
+------------+-------+----------+-----------------------------+
| Table | Op | Msg_type | Msg_text |
+------------+-------+----------+-----------------------------+
| jijoeDB.aa | check | status | Table is already up to date |
+------------+-------+----------+-----------------------------+
1 row in set (0.00 sec)
mysql> check table aa extended;
+------------+-------+----------+----------+
| Table | Op | Msg_type | Msg_text |
+------------+-------+----------+----------+
| jijoeDB.aa | check | status | OK |
+------------+-------+----------+----------+
1 row in set (0.00 sec)
mysql> check table aa;
+------------+-------+----------+----------+
| Table | Op | Msg_type | Msg_text |
+------------+-------+----------+----------+
| jijoeDB.aa | check | status | OK |
+------------+-------+----------+----------+
1 row in set (0.00 sec)
mysql> check table aa fast quick;
+------------+-------+----------+-----------------------------+
| Table | Op | Msg_type | Msg_text |
+------------+-------+----------+-----------------------------+
| jijoeDB.aa | check | status | Table is already up to date |
+------------+-------+----------+-----------------------------+
1 row in set (0.00 sec)
CHECK TABLE tbl_name[,tbl_name...] [option [option...]]
여기서 option=QUICK ¦ FAST ¦ MEDIUM ¦ EXTENDED ¦ CHANGED이며,
디폴트는 MEDIUM임
【예제】
mysql> show databases;
+----------+
| Database |
+----------+
| jijoeDB |
| mysql |
| test |
+----------+
3 rows in set (0.00 sec)
mysql> use jijoeDB;
Database changed
mysql> show tables;
+-------------------+
| Tables_in_jijoeDB |
+-------------------+
| aa |
+-------------------+
1 row in set (0.00 sec)
mysql> check table aa;
+------------+-------+----------+----------+
| Table | Op | Msg_type | Msg_text |
+------------+-------+----------+----------+
| jijoeDB.aa | check | status | OK |
+------------+-------+----------+----------+
1 row in set (0.01 sec)
mysql> check table aa quick;
+------------+-------+----------+----------+
| Table | Op | Msg_type | Msg_text |
+------------+-------+----------+----------+
| jijoeDB.aa | check | status | OK |
+------------+-------+----------+----------+
1 row in set (0.00 sec)
mysql> check table aa fast;
+------------+-------+----------+-----------------------------+
| Table | Op | Msg_type | Msg_text |
+------------+-------+----------+-----------------------------+
| jijoeDB.aa | check | status | Table is already up to date |
+------------+-------+----------+-----------------------------+
1 row in set (0.00 sec)
여기서 Table is already up to date는 더이상 테이블을 체크할 필요가 없음을 의미함
mysql> check table aa changed;
+------------+-------+----------+-----------------------------+
| Table | Op | Msg_type | Msg_text |
+------------+-------+----------+-----------------------------+
| jijoeDB.aa | check | status | Table is already up to date |
+------------+-------+----------+-----------------------------+
1 row in set (0.00 sec)
mysql> check table aa extended;
+------------+-------+----------+----------+
| Table | Op | Msg_type | Msg_text |
+------------+-------+----------+----------+
| jijoeDB.aa | check | status | OK |
+------------+-------+----------+----------+
1 row in set (0.00 sec)
mysql> check table aa;
+------------+-------+----------+----------+
| Table | Op | Msg_type | Msg_text |
+------------+-------+----------+----------+
| jijoeDB.aa | check | status | OK |
+------------+-------+----------+----------+
1 row in set (0.00 sec)
mysql> check table aa fast quick;
+------------+-------+----------+-----------------------------+
| Table | Op | Msg_type | Msg_text |
+------------+-------+----------+-----------------------------+
| jijoeDB.aa | check | status | Table is already up to date |
+------------+-------+----------+-----------------------------+
1 row in set (0.00 sec)
비고
check table 후, repair table을 실행하는 것은 mysqld가 실행되고 있지 않은 경우 쉘 프롬프트에서 myisamchk를 실행하는 것과 같다.
즉, repair table은 mysqld가 실행되고 있는 중에 수리가 가능하지만,
myisamchk는 mysqld가 실행하지 않을 때 수리가 가능하다.
즉, repair table은 mysqld가 실행되고 있는 중에 수리가 가능하지만,
myisamchk는 mysqld가 실행하지 않을 때 수리가 가능하다.
728x90
반응형
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- jstl(java standard tag library)-core
- jstl(java standard tag library)
- java 키워드 정리
- 메이븐(maven)
- 진수 변환
- 람다식(lambda expression)
- await
- .submit()
- 스프링 프레임워크(spring framework)
- 문자 자르기
- jsp 오픈 소스
- java.sql
- 제품 등록
- REST API
- system.io
- 스프링 프레임워크(spring framewordk)
- java web-mvc
- System.Diagnostics
- 인텔리제이(intellij)
- 스프링 시큐리티(spring security)-http basic 인증
- error-java
- 특정 문자를 기준으로 자르기
- MainActor
- 스프링 시큐리티(spring security)
- java-개발 환경 설정하기
- React
- 상품 등록
- 표현 언어(expression language)
- nl2br
- In App Purchase
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
글 보관함