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';
load data infile '/a.log' into table a801 fields terminated by '\t';