omoonのブログ

旅の思い出を写真とともに書いてみるか。

4.1から4.0へのmysqldump

mysql4.1のダンプファイルが、mysql4.0に読み込めなくて困った。その時の覚え書き。

mysqldump --compatible=mysql40 foo > foo.sql

こうしないと、4.0では使えないSQLが吐き出されてしまう。


以下、mysqldump --helpより抜粋

--compatible=name
Change the dump to be compatible with a given mode. By default tables are dumped in a format optimized for MySQL. Legal modes are: ansi, mysql323, mysql40, postgresql, oracle, mssql, db2, maxdb, no_key_options, no_table_options, no_field_options. One can use several modes separated by commas. Note: Requires MySQL server version 4.1.0 or higher. This option is ignored with earlier server versions.