Does MySql have a bulk load command line tool like bcp for SQLServer and sqlldr for Oracle? I know there\'s a SQL command LOAD INFILE or similar but I sometime
LOAD INFILE
mysql -u root -p use database; source /path/yourfile.sql
Might be what you are looking for, you can use rsync via ssh to transfert the 'bulk file' from a machine to another.