欢迎来到福编程网,本站提供各种互联网专业知识!
您的位置:网站首页 > 数据库 > Mysql

MYSQL大数据导入

发布时间:2006-11-19 作者: 来源:转载
感谢XP提供的代码!在这里记录一下,因为以后学要用;作用资料查询之用!第一步:mysql-hlocalhost-uroot第二步:showdatabases;第三步:usechangchunmap;第四步:showtables;第五步:loaddatalocalinfile"d:/c.txt"replaceintotablechangchunmapfieldsterm

感谢XP提供的代码!
在这里记录一下,因为以后学要用;作用资料查询之用!
第一步:mysql-hlocalhost-uroot
第二步:showdatabases;
第三步:usechangchunmap;
第四步:showtables;
第五步:loaddatalocalinfile"d:/c.txt"replaceintotablechangchunmapfieldsterminatedby'';
没有了;
loaddatalocalinfile"d:/migration/mysql/babel_topic.txt"replaceintotablebabel_topic_testfieldsterminatedby''
loaddatalocalinfile"d:/migration/mysql/babel_user.txt"replaceintotablebabel_user_testfieldsterminatedby't'
在导入过程中因为某些字段数据为NULL修改了某些表格的长度和可以为空,为了正确导入,请保证如下字段修改完毕:
Babel_topic:tpc_unameVARCHAR(192)可以为NULL
Babel_user:usr_passwordVARCHAR(64)可以为NULL
usr_nickVARCHAR(192)可以为NULL
loaddatalocalinfile"d:/c.txt"replaceintotablechangchunmapfieldsterminatedby''

相关推荐