一.mongodb-------csv------mysql
1.使用mongoexport命令导出结果csv
mongoexport -h 192.168.38.151 -d vcm -c car -f _id,store_id,brand_id,vin,date_checked,name,mobile --type=csv -o /data/carrecords.csv
参数说明 -h:数据库ip,-u 登录帐号(没有不用),-p 密码, -d 数据库名称 -c mongo数据库集合名
2.mysql创建数据表
CREATE TABLE `car` (
`_id` int(11) DEFAULT NULL,
`store_id` int(11) DEFAULT NULL,
`brand_id` int(11) DEFAULT NULL,
`vin` varchar(20) DEFAULT NULL,
`date_checked` datetime DEFAULT NULL,
`name` varchar(10) DEFAULT NULL,
`mobile` varchar(20) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
3.写loadsql脚本:cardata.sql
load data local infile '/data/carrecords.csv'
into table `car` character set utf8
fields terminated by ',' optionally enclosed by '"'
lines terminated by '\n'
ignore 1 lines;
4.写导入的shell脚本:loadcsvdata.sh
mysql -h192.168.38.152 -uroot -pwangjie123 lunch(databaseName) --default-character-set=utf8 --local-infile=1 < /data/cardata.sql
如此利用mongo和mysql自己提供的命令可实现简单的数据迁移,但复杂灵活点还是需要自己写代码做迁移,后补充