Reputation: 47
We are needing to create a copy of all data that is on an Azure SQL Managed instance to an Azure SQL Server. The data will be updated/refreshed regularly. ideally some sort of job on a schedule would help as well but manual is fine. We just cannot find a solution to get the data from MI DB to SQL DB without manually creating a bacpac of MI data and then restoring to SQL DB every time. Any ideas? Has anyone successfully done this?
EDIT: Methods besides pipline/DF method. This is what we were looking at https://learn.microsoft.com/en-us/azure/azure-sql/managed-instance/replication-two-instances-and-sql-server-configure-tutorial but minus SQL VM part. Cannot get it to work.
Thanks
Upvotes: 0
Views: 2085
Reputation: 5074
You can use the Azure Data Factory pipeline to copy data from Azure SQL Managed Instance DB to Azure SQL Server DB.
Create Azure data factoryresource.
Create Azure SQL Managed Instance linked service for source dataset connection.
Copy data
activity from Activities.You can go through these MS documents for more details on Source and Sink dataset.
Upvotes: 1