How can I create a FEDERATED on VIEW which placed on remote server? I'm using MySQL.
|
feedback
|
|
Yes, you can create a FEDERATED table on a VIEW. Here's a simple example:
| |||
|
feedback
|
|
How can I create a FEDERATED on VIEW which placed on remote server? I'm using MySQL.
| ||||
|
feedback
|
|
Yes, you can create a FEDERATED table on a VIEW. Here's a simple example:
| |||
|
feedback
|
CREATE TABLE federated_table(...) ENGINE=FEDERATED CONNECTION='mysql://user@host:port/db/view';If it works, it works... ;-) There is no official documentation available, so testing would be the fastest way to answer your question. – Stefan Gehrig Mar 23 '11 at 10:50