朋友提了一个MySQL数据导出导入的问题。
问题描述:从源库(兼容MySQL协议的TDSQL,select version()=5.7,test表字符集是utf8,test是个分区表)通过如下指令,导出一份数据,SQL格式的,文件6G,
mysqldump -hx.x.x.x -P3306 -uroot -proot
--databases dbtest --tables test
--complete-insert --single-transaction --add-drop-table
--skip-add-locks >test.sql
通过执行mysql将数据导入目标库(docker下的MySQL 8.0,test表字符集是Utf8mb),
mysql -hx.x.x.x -P3306 -uroot -proot test