Editing MySQL 덤프
From CS Wiki
Revision as of 22:03, 25 February 2023 by Dbeaver (talk | contribs) (새 문서: == 개요 == mysql(mariadb) 설치 시 같이 설치되는 mysqldump 명령어 사용 * 마리아DB도 동일하게 'mysqldump' 사용 * 일반적 위치: /usr/bin/mysqldump == 사용 예시 == === 기본 사용법 === '''전체 DB 덤프'''<syntaxhighlight lang="bash"> mysqldump -uroot -p패스워드 --all-databases > /디렉토리/덤프파일 </syntaxhighlight>'''특정 DB 덤프'''<syntaxhighlight lang="bash"> mysqldump DB명 > /디렉토리/덤프파일 -uroot -p패스...)
Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.