How would I do the following command, with a local file, on a remote database (different machine) ?
$MYSQL_PATH/mysql -u root -h remote.net files -e \" LOAD
Don't forget to include --local-infile=1 when doing this:
--local-infile=1
$MYSQL_PATH/mysql -u root -h remote.net files --local-infile=1 -e " LOAD DATA LOCAL INFILE...