mysqldumpを行うには下記コマンドを使用する。
テーブルが複数ある場合は、スペースで区切る。
command
mysqldump -u USER_NAME -p -h HOST_NAME -t DB_NAME TABLE_NAME > OUTPUT_FILE_NAME
下記エラーが発生した場合は、
command
mysqldump: Error: 'Access denied; you need (at least one of) the PROCESS privilege(s) for this operation' when trying to dump tablespaces
下記のように「--no-tablespaces」をつける。
command
mysqldump --no-tablespaces -u USER_NAME -p -h HOST_NAME -t DB_NAME TABLE_NAME > OUTPUT_FILE_NAME
「~」(0x8160:Shift_JIS)が化ける問題が発生するんで、下記対策を行う。
https://kaworu.jpn.org/kaworu/2008-04-04-2.php