* joffrey leevy
> Got a problem/question.  I am trying to load a tab
> delimited textfile into my table and it keeps saying
> file not found.  I am confident I am doing everything
> correct (the pathname, text extension, syntax, etc.)
> But it keeps saying file not found (error 1105 and
> errcode:2).  What could I be doing wrong?  I am using
> the mysql client to send queries.

errcode 2 means the file/directory does not exist.

Are you sure you have the file on the right box? If you use LOAD DATA INFILE
... the file must be on the server, if you use LOAD DATA LOCAL INFILE ...
the file is expected to be on the client.

<URL: http://www.mysql.com/doc/en/LOAD_DATA.html >

--
Roger


-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to