MSSQL Server Connection Using MySQL Workbench

I am trying to connect to a database that is on an MSSQL server using MySQL Workbench.

when creating a new connection using workbench, I get the error message "Lost connection to MySQL server while waiting for the initial communication packet", system error: 10060 "

while searching for this error code - I got this link - Can I use mysql to connect to SQL Server?

any suggestions / links how can I connect to the database on the MSSQL server using MySQL Workbench

+5
source share
1 answer

MySQL Workbench is a tool specifically designed to work with the MySQL server. No other RDBMs are supported.

To clarify after the comment on migration:

Migration is something completely different. WB is only ported from specific RDBMSs, but always in MySQL. And all the functions in WB only work and have been tested for the MySQL server.

0
source

Source: https://habr.com/ru/post/1208788/


All Articles