How to copy a table from server A db1 to server B db2 ?
I can copy a table from one database to another database on the server, but I can not do this for different servers.
CREATE TABLE recipes_new LIKE production.recipes; INSERT recipes_new SELECT * FROM production.recipes;
Everything I do to reduce the load on the server so that I can copy the table information to another server and run my queries there ...
source share