16
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

mysqldumpでバイナリデータを扱う場合のオプション

Posted at

#やったこと
BLOB型やGEOMETRY型も含めたデータを移行する必要があったのでその時に使ったオプションです。
次やる時には絶対忘れそうなところなので、残しておこうかと。

オプション名 説明
--hex-blob バイナリカラムを 16 進変換表記法を使用してダンプ

#実際のコマンド
###バックアップ作成


mysqldump -h ホスト名 -u ユーザ名 -p データベース名 --hex-blob > dump_data.sql

###データ登録


mysql -h ホスト名 -u ユーザ名 -p データベース名 < dump_data.sql

#参考:
mysqldumpでバックアップをする時につけるオプション
http://oinume.hatenablog.com/entry/wp/292

16
9
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
16
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?