MySQL 데이터베이스에서 mysqldump 명령어를 이용한 procedure, function, trigger 포함 백업 및 복구 방법Database2015. 6. 13. 17:28
Table of Contents
1.데이터베이스 백업
1-1) procedure, function, trigger 포함한 백업하기(옵션 --routines --trigger)
$ mysqldump --routines --trigger -u유저이름 -p패스워드 DB명 > 백업파일
[명령어 예제]
$ mysqldump --routines --trigger -uroot -pxxx -A > /xxx.sql
$ mysqldump --routines --trigger -uroot -pxxx [DATABASE] > [DATABASE].sql
1-2) procedure function trigger만을 백업하기
$ mysqldump --routines --no-create-info --no-data --no-create-db --skip-opt DB명 > 백업파일
2. 데이터베이스 복구
$ mysql --routines --trigger -u유저이름 -p패스워드 DB명 < 백업파일
반응형
'Database' 카테고리의 다른 글
MySQL 데이터베이스 상태 모니터링 쿼리 (0) | 2017.01.18 |
---|---|
MySQL 5.7.9 릴리즈 변화된 root 비밀번호 변경하기 (2) | 2015.11.18 |
MySQL에서 관리자(root) 비밀번호 생성 명령어 (0) | 2014.10.08 |
CentOS 6.2 환경에서 yum 명령어를 이용한 MySQL 설치와 root 패스워드 초기화 방법 (0) | 2012.11.28 |
MySQL 데이터베이스 백업(dump) 명령어 (0) | 2012.05.23 |
@kogun82 :: Ctrl+C&V 로 하는 프로그래밍
Korean BioInformation Center(KOBIC) Korea Research Institute of Bioscience & Biotechnology Address: #52 Eoeun-dong, Yuseong-gu, Deajeon, 305-806, KOREA +82-10-9936-2261 e-mail: kogun82@kribb.re.kr Blog: kogun82.tistory.com Homepage: www.kobic.re.kr
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!