계속업데이트 예정(맘으로만)
** 주의 : ` 과 ' 를 잘구분해야함!!
-----------------------------------------------------SHOW DATABASES; [존재하는 데이터베이스목록출력]
USE (또는 \u) `디비이름` ; [해당디비로 포인터이동]
--> console명령어 하단help결과참조
SHOW TABLES; [디비에 들어있는 테이블목록출력]
SHOW TABLES FROM `디비이름`;
SHOW TABLE STATUS; [현재디비의 테이블 자료정보(row현황,인덱스사용량등)출력]
SHOW TABLE STATUS LIKE
'테이블이름'; (%와일드카드사용가
-)
SHOW TABLE STATUS FROM `디비이름`
->권한있을때 다른디비도 검색
SHOW KEYS FROM `테이블이름`; [인덱싱등 key정보]
SHOW FIELDS FROM `테이블이름` ;SHOW OPEN
TABLES;
SHOW OPEN TABLES FROM `디비이름`
;
SHOW INDEX FROM `테이블이름` ;
ANALYZE TABLE `테이블이름` ,`테이블이름` (여러개가능);CHECK TABLE `테이블이름` ,`테이블이름` (여러개가능);
OPTIMIZE TABLE `테이블이름` ,`테이블이름` (여러개가능);
REPAIR TABLE `테이블이름` ,`테이블이름` (여러개가능);
================================================================
help결과
----------
help (\h) Display this help.
? (\?) Synonym for
`help'.
clear (\c) Clear command.
connect (\r) Reconnect to the
server. Optional arguments are db and host.
ego (\G) Send command to
mysql server, display result vertically.
exit (\q) Exit mysql. Same as
quit.
go (\g) Send command to mysql server.
notee (\t) Don't
write into outfile.
print (\p) Print current command.
prompt (\R)
Change your mysql prompt.
quit (\q) Quit mysql.
rehash (\#)
Rebuild completion hash.
source (\.) Execute a SQL script file. Takes a
file name as an argument.
status (\s) Get status information from the
server.
tee (\T) Set outfile [to_outfile]. Append everything into
given outfile.
use (\u) Use another database. Takes database name as
argument.
==========================================================================
'서버.보안' 카테고리의 다른 글
SQL Injection (0) | 2007.06.05 |
---|---|
* ISP별 DNS 서버 주소 리스트 (0) | 2007.03.21 |
로그 화일 자동 조절하기 (0) | 2006.10.16 |
서버종합점검[리눅스] (0) | 2006.10.16 |
Vimrc 파일내용. (0) | 2006.07.28 |
댓글