1. 程式人生 > >mysql匯入資料出現Errcode: 2

mysql匯入資料出現Errcode: 2

      在匯入資料出現這個錯誤一般是因為地址裡面的斜槓使用錯誤。比如下面

load data local infile 'D:\road.txt'into table roadcd fields terminated by '\t';
      我參考許多資料,這裡的地址都是使用單斜槓,但我卻出現下面的錯誤資訊:

oad.txt' not found (Errcode: 2 - No such file or directory)

    如果你和我們錯誤資訊一樣的話,那就把單斜槓(\)改為雙斜槓(\\)試試;

 load data local infile 'D:\\road.txt'into table roadcd fields terminated by '\t';

     這樣的話就OK了,資料成功匯入。

原文連結:http://blog.csdn.net/wzgl__wh/article/details/52588486