No i have not done the upload to the server. Just on my win machine (using the telnet window) i typed the command:
load data local infile "c:/test.txt" into table catalog
I did it like this cos in the mysql manual, there is written:
"The LOAD DATA INFILE statement reads rows from a text file into a table at a very high
speed. If the LOCAL keyword is specified, the file is read from the client (!) host. If LOCAL is
not specified, the file must be located on the server. (LOCAL is available in MySQL 3.22.6
or later.)"
I understood it like this:
c:/test.txt is on my win machine (the client)
and it is loaded into a table on the server
Peter