Short version: How can I refer to a non-local table via DSN in a mysql query?
Long version: My intent is to copy some mysql tables from a production machine to a backup machine nightly. The path of least resistance seems to be creating an ODBC connection to the backup machine, and then setting up an Event to run nightly. The Event's SQL would then be something simple, like
SELECT * FROM localdb.table INTO dsn.database.table
The problem I'm having is it seems that's not the way to connect out from mysql using a DSN. All my googling led me to plenty of sites describing connecting form some languages into mysql, but not from mysql into another mysql. The syntax specified by http://dev.mysql.com/doc/refman/5.0/en/join.html indicates there's no way to do it.