An Azure relational database service.
Azure SQL Database does not support creating linked servers internally, so you cannot configure a linked server from within Azure SQL Database like you would in SQL Server.
However, you can create a linked server on your on-premises SQL Server that points to Azure SQL Database using the Microsoft OLE DB Driver for SQL Server. This allows you to query Azure SQL Database using four-part naming from your on-prem environment.
That said, there are some important limitations to be aware of:
- Distributed transactions (MSDTC) are not supported
- Performance may be impacted due to network latency and limited query pushdown
- Some T-SQL behaviors may differ compared to SQL Server
If your requirement is a full linked-server experience similar to SQL Server, Azure SQL Managed Instance is the recommended option, as it supports linked servers natively.
If your goal is data integration or movement rather than real-time querying, Azure-native approaches (such as data pipelines or synchronization) are generally more reliable than linked servers.
Hope this helps, Please let us know if you have any questions and concerns.