MySQL DB字符集修改方法

guocun09發表於2018-02-27

1>將原DB(test1)結構匯出

C:\Users\Oraman>mysqldump -uroot -p -d test1 > createdb.sql

Enter password: ******

-d 只導表結構

注:如果DB 中有儲存過程和函式(routines)或者JOB(events) 需要指明-R -E
-R 匯出時包含儲存過程 –E匯出時包含events

2>將原DB字符集匯出

C:\Users\Oraman>mysqldump -uroot -p --quick --no-create-info --extended-insert --default-character-set=utf8 test1> data.sql

Enter password: ******

-q, --quick         Don't buffer query, dump directly to stdout.

                    (Defaults to on; use --skip-quick to disable.)

--no-create-info    不導create table

-e, --extended-insert

                    Use multiple-row INSERT syntax that include several

                    VALUES lists.

--default-character-set  字符集,按原db字符集匯出


3>修改createdb.sql 表定義的字符集為新字符集

4>修改data.sql 中set names 新字符集

5>使用新字符集建立DB(正式環境做好測試後再drop database,create database)

mysql> CREATE DATABASE test1 DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci

6>匯入表結構

mysql –uroot –p test1 < createdb.sql

7>匯入資料

mysql –uroot –p test1 < data.sql


注意:選擇目標字符集時最好是源字符集的超集,如果目標字符集字型檔小於源字符集,那麼匯入後可能會亂碼

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/25583515/viewspace-2151323/,如需轉載,請註明出處,否則將追究法律責任。

相關文章