아래 방법으로 프로시저를 함께 백업하거나 프로시저만 백업할 수 있다.
프로시저 함께 백업
# mysqldump -u root -p --routines DB > full.sql
프로시저만 백업
# mysqldump -u root -p -n -d -t --routines --triggers DB > procedures_only.sql
모든 DB의 프로시저만 백업
# mysqldump -u root -p -n -d -t --routines --triggers --all-databases DB > procedures_only.sql
복원할 때는 기존과 같은 방식으로(mysql -u root -p DB < procedures_only.sql).
'서버&시스템 > MySQL' 카테고리의 다른 글
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 |
binary log 정리, 삭제 주기 설정 (0) | 2013.02.15 |
ERROR 1251: Client does not support authentication protocol requested by server; consider upgrading MySQL client (1) | 2012.07.03 |
mysql 콘솔 명령어 기록 지우기(리눅스) (0) | 2012.01.12 |