The following line will allow you to dump a MySQL database from the current machine to another machine, for as long as you have access to the dd command on the remote machine:
mysqldump -u USERNAME-HERE -p’PASSWORD-HERE’ DB-NAME-HERE | ssh [email protected] “dd of=/mysql/$(date +’%d-%m-%y’)”