Can I use federated tables to make the integration of mysql and mssql ? I tried and it worked mysql to mysql , but if I try to connect to mssql , do not work.
Thank You.
Can I use federated tables to make the integration of mysql and mssql ? I tried and it worked mysql to mysql , but if I try to connect to mssql , do not work.
Thank You.
As per MySQL 5.7 Reference Manual - 15.8.1 FEDERATED Storage Engine Overview:
The local server communicates with the remote server using MySQL client C API functions.
... which, naturally, can only connect to mysqld
.
MySQL Workbench - Database Migration: Microsoft SQL Server to MySQL gives an overview of options to transfer data between mssql and mysql. They can be summarized as:
mysql
from mssql
through ODBC by adding the former as a "linked server"