DUMP
전체 dump
mysqldump -uID -pP/W DB명 > DUMP 파일명
원격 dump
mysqldump -hIP -uID -pP/W DB명 > DUMP 파일명
구조만 dump
mysqldump -d -uID -pP/W DB명 > DUMP 파일명
RESTORE
부등호만 반대로 하면 됨
mysqldump -uID -pP/W DB명 < DUMP 파일명
OPTION
--routines --trigger : procedure, function, trigger dump
procedure, function, trigger 덤프 파일 restore 시 fuction이 생성되지 않는 에러가 발생될수가 있는데 이때는
SET GLOBAL log_bin_trust_function_creators = 1; 쿼리를 실행 시켜서 ON 상태로 만들어 줘야 함.
SHOW GLOBAL VARIABLES LIKE 'log_bin_trust_function_creators'; 이 쿼리로 값 확인 가능
http://intomysql.blogspot.kr/2010/12/mysqldump.html
http://cloudjak.tistory.com/17
검색하면 주르륵 나오니 여기까지...
'개발 > DB' 카테고리의 다른 글
Mysql 옵션 (0) | 2016.12.23 |
---|---|
DB 디렉토리 심볼릭 링크 걸기 (0) | 2016.05.25 |
우분투에서 mariaDB 설치 (0) | 2016.05.12 |
MariaDB LOAD DATA INFILE (0) | 2015.12.16 |