Home > Software design >  Migrating multiple Databases using Migration Assistant Tool - SQL SERVER to AZURE SQL Database
Migrating multiple Databases using Migration Assistant Tool - SQL SERVER to AZURE SQL Database

Time:03-30

I'm trying to migrate all the old databases from SQL SERVER to AZURE SQL Database using Database Migration tool and successfully able to do.

There are more than 100 databases to migrate so for each and every database running the tool and repeating the process is lot of process.

Can someone help with migrating Multiple databases in one go or doing one at a time is the only solution.

enter image description here

Thanks.

CodePudding user response:

You can only select a single database from your source to migrate to the Azure SQL database using the Data Migration Assistant tool.

enter image description here

You can create an Azure Database Migration Service resource in the Azure portal and select one or more databases to migrate from SQL Server to Azure SQL Database.

Refer this Microsoft documentation for detailed process.

  • Related