자주 사용하는 MySQL DB Dump 방법
내용 | 명령어 |
DB 전체 | mysqldump -u root -p DB명 > db_all.sql |
특정 Table만 | mysqldump -u root -p DB명 Table명 > db_table.sql |
저장 프로시저, 함수 포함 | mysqldump -u root -p DB명 --routines > db_all_with_procedure.sql |
데이터 없이 구조만 | mysqldump -u root -p DB명 --no-data > db_no_data.sql |
한글 깨짐 방지 | mysqldump -u root -p DB명 --default-character-set=utf8 > db_all.sql |
'서버&시스템 > MySQL' 카테고리의 다른 글
설치 시 지정했던 configure 옵션 확인 (0) | 2015.08.24 |
---|---|
Connection using old (pre-4.1.1) authentication protocol refused (client option 'secure_auth' enabled) (0) | 2014.09.19 |
ERROR 1201 (HY000): Could not initialize master info structure; more error messages can be found in the MySQL error log (0) | 2014.04.24 |
MySQL Replication (마스터-슬레이브 동기화) 설정 (0) | 2014.04.08 |
저장 프로시저 백업 (0) | 2013.05.02 |