Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

MySQL: SELECT from another server

I'm afraid that I already know the answer to my question, but I'll ask it anyway:

When there are two MySQL DB servers, can I access data that is stored on the other server?

In other words: Can I somehow do this:

INSERT INTO table (x, y, z)    SELECT x, y, x+y       FROM [otherserver].[database].[table] 

Is the answer really as short as "No"?

like image 957
BlaM Avatar asked Feb 03 '09 17:02

BlaM


People also ask

How do I select a linked server?

Right-click on the Linked Server node and choose New Linked Server. In the General tab of the New Linked Server window, choose a name for your linked server, then choose the type of the server you need to connect to using that linked server.


1 Answers

You can set up federated tables in MySQL to accomplish what you're trying to do. There are some limitations.

http://dev.mysql.com/doc/refman/en/federated-storage-engine.html http://dev.mysql.com/doc/refman/en/federated-usagenotes.html

like image 59
volatilsis Avatar answered Oct 13 '22 10:10

volatilsis