I am reasonably familiar with the
use db1; insert into db2.table1 ( fields ) select fields from table1...
syntax to copy data from one db table to a table in another db.
But is it possible to extend this further and specify that the target db is on a different server? i.e. can I use some sort of dsn string to specifiy the target?
I don't expect it'll be hugely efficient but it'll be useful for me for testing "official" test db data on my local mini-development machine.
Cheers
Bill