Hi everyone,
My LAN is consisted of 2 separate MySQL platforms.
In on of those 2 stations I have a database: "MyDB" that hosts a table: "MyTABLE".
At the second station I created a database with the name: "MyDB" and I'd like to import the table "MyTABLE" into that database.
In order to do so I thought I might write the following query:
I typed:
and recieved an error that says: "error 1049 unknown database 10.0.0.30".
Can anyone help my put the right code to read (and whereby import) a table fro a remote station?
Thanks
My LAN is consisted of 2 separate MySQL platforms.
In on of those 2 stations I have a database: "MyDB" that hosts a table: "MyTABLE".
At the second station I created a database with the name: "MyDB" and I'd like to import the table "MyTABLE" into that database.
In order to do so I thought I might write the following query:
Code:
CREATE TABLE MyTABLE SELECT * FROM ip.db. MyTABLE;
Code:
CREATE TABLE MyTABLE SELECT * FROM 10.0.0.30.MyDB.MyTABLE;
Can anyone help my put the right code to read (and whereby import) a table fro a remote station?
Thanks