Home > Net >  SSMS - Linked Servers - Azure
SSMS - Linked Servers - Azure

Time:10-26

I am hoping someone might be able to assist me with this. We have recently got an Azure SQL server setup and we have an existing externally hosted MySQL server

I am looking for a way to link these to allow SSMS to query against the MySQL database, which I believe can be done using a linked server in SSMS. The issue is that my SSMS seems to not have the options I would expect existing SSMS Options like Server Objects and linked servers

Does anyone know why this isn't visible, I heard it was due to this being an Azure server and not a hosted SQL server

Any ideas?

Gratitude in advance

CodePudding user response:

I am looking for a way to link these to allow SSMS to query against the MySQL database, which I believe can be done using a linked server in SSMS. The issue is that my SSMS seems to not have the options I would expect existing SSMS Options like Server Objects and linked servers

You cannot.

Azure SQL does not supported Linked Servers. Only on-prem SQL Server and Azure SQL Managed Instance supports that.

https://docs.microsoft.com/en-us/sql/relational-databases/linked-servers/create-linked-servers-sql-server-database-engine?view=sql-server-ver15


However you can use OPENROWSET to query any OLE-DB data-source from Azure SQL but this is not the same as a Linked Server.

  • Related