SQL Server Management Studio Express and MySQL?

Is there a way to use SQL Server Management Studio Express with a MySQL database? Think even if this works, intellisense will not work?

Thanks!

+7
source share
3 answers

It will not work with MySQL. The product name is "SQL Server Management Studio", so it manages instances of SQL Server.

If you need a tool with similar functionality, try Toad for MySQL, it's a free program or Oracle SQLDeveloper.

+6
source



I don’t know if you found the answer, but the following links may help:

1- HOWTO: Installing a Linked SQL Server with MySQL
2- Creating a linked server with MYSQL with SQL Server

+4
source

I do not see how this will work, SSMS is written only for MSSQL.

However, you can create a link server in the mysql database and use it that way, I doubt intellisense will work. see here for more information.

+1
source

All Articles