导入infobright时,能不能跳过错误的行
RT
免费版infobright,
语句如下:
- SQL code
load data infile '/a.log' into table a801 fields terminated by '\t';
导入数据库时有错误,能不能跳过错误的行继续执行?
[解决办法]
什么错误 尝试用ignore
load data infile '/a.log' ignore into table a801 fields terminated by '\t';
发布时间: 2012-09-12 09:21:30 作者: rapoo
导入infobright时,能不能跳过错误的行
RT
免费版infobright,
语句如下:
load data infile '/a.log' into table a801 fields terminated by '\t';