Export DB to SQL query using mysqldump
1. Data only
2. Table Schema and data
3. Table Schema only
mysqldump --no-data --skip-comments --skip-add-drop-table --default-character-set=utf8mb4 -uUSER -p -hHOST DBNAME | sed 's/ AUTO_INCREMENT=[0-9]*//g' > output.sql
4. Procedure only
mysqldump --routines --no-create-info --no-data --skip-comments --no-create-db --skip-opt --add-drop-table --default-character-set=utf8mb4 -uUSER -p -hHOST DBNAME | sed -e 's/DEFINER=`[a-zA-Z]*`@`[0-9.%]*`//g' > output_sp.sql
'IT_컴퓨터_코딩_개발' 카테고리의 다른 글
Heroku(히로쿠/헤로쿠/허로쿠)에서 무료로 Go 서버 돌리기 (0) | 2016.10.10 |
---|---|
Android keep Screen On (0) | 2016.10.07 |
Export and import mysql to and from csv file on command line (0) | 2016.10.05 |
유니티 구매 가격 (0) | 2016.09.29 |
UE4 언리얼 엔진 비용 (0) | 2016.09.29 |