1
votes

Is Possible to connect Azure SQL managed Instance from Azure SQL DB? By design, Azure SQL database is PaaS model with public end point only and Managed Instance has got only private end point. So how to connect the both? We need to access (Read) few tables in Azure SQL MI from SQL DB using Elastic Query.

1

1 Answers

1
votes

Is Possible to connect Azure SQL managed Instance from Azure SQL DB?

No, because "Azure SQL [has only a] public end point only and Managed Instance has got only private end point." You can use Linked Server to connect from Managed Instance to Azure SQL Database. Or you can use Replciation to copy the tables from Managed Instance to SQL Database.