在Windows操作系统下,使用命令行将已经创建好的txt文件导入到mysql的pet表中. 出现ERROR 1148 (42000): The used command is not allowed with this MySQL version. 输入命令:show variables like 'local_infile'; 显示 local_infile是关闭的,输入语句:set global local_infile=ON; 将local_infile打开.(如果报错,无法修改,则需…
1.原表没有设置主键,出现错误提示: ERROR tool.ImportTool: Error during import: No primary key could be found for table xxx. Please specify one with --split-by or perform a sequential import with '-m 1' 提示说明的很清楚:在表xxx没有发现主键,使用--split-by指定一个column作为拆分字段或者在命令行上添加 ‘-m 1…
利用load data将文件中的数据导入数据库表中的时候,遇到了两个问题. 首先是load data命令无法执行的问题: 命令行下输入load data local infile "path/filename" to table table_name: 系统提示:ERROR 1148 (42000): The used command is not allowed with this MySQL version. 解决方法:退出mysql, 重新以此命令登录mysql mysql -u…