|
Ispirer SQLWays Database Migration Software
Importing data to MySQL 4.0.x using the LOCAL DATA INFILE command (LOCAL keyword - The used command is not allowed with this MySQL version)
There are some specific issues regarding using the LOCAL keyword in LOAD DATA INFILE command in MySQL 4.0.x. The LOCAL keyword allows loading data from the client, otherwise the data must be located on the server.
In MySQL 4.0.x LOCAL will only work if MySQL server was started with --local-infile=1.
In the case that LOAD DATA LOCAL INFILE is disabled in the server or the client, you will get the error message (1148): "The used command is not allowed with this MySQL version".