title | description | services | author | ms.author | manager | ms.reviewer | ms.service | ms.workload | ms.custom | ms.topic | ms.date |
---|---|---|---|---|---|---|---|---|---|---|---|
Migrate SQL Server to Azure SQL Database with Database Migration Service and PowerShell | Microsoft Docs |
Learn to migrate from on-premises SQL Server to Azure SQL Database by using Azure PowerShell. |
database-migration |
pochiraju |
rajpo |
database-migration |
data-services |
mvc |
article |
11/10/2018 |
In this article, you migrate the Adventureworks2012 database restored to an on-premises instance of SQL Server 2016 or above to an Azure SQL Database by using Microsoft Azure PowerShell. You can migrate databases from an on-premises SQL Server instance to Azure SQL Database by using the AzureRM.DataMigration
module in Microsoft Azure PowerShell.
In this article, you learn how to:
[!div class="checklist"]
- Create a resource group.
- Create an instance of the Azure Database Migration Service.
- Create a migration project in an Azure Database Migration Service instance.
- Run the migration.
To complete these steps, you need:
- SQL Server 2016 or above (any edition)
- To enable the TCP/IP protocol, which is disabled by default with SQL Server Express installation. Enable the TCP/IP protocol by following the article Enable or Disable a Server Network Protocol.
- To configure your Windows Firewall for database engine access.
- An Azure SQL Database instance. You can create an Azure SQL Database instance by following the detail in the article Create an Azure SQL database in the Azure portal.
- Data Migration Assistant v3.3 or later.
- To have created a VNET by using the Azure Resource Manager deployment model, which provides the Azure Database Migration Service with site-to-site connectivity to your on-premises source servers by using either ExpressRoute or VPN.
- To have completed assessment of your on-premises database and schema migration using Data Migration Assistant as described in the article Performing a SQL Server migration assessment
- To download and install the AzureRM.DataMigration module from the PowerShell Gallery by using Install-Module PowerShell cmdlet; be sure to open the powershell command window using run as an Administrator.
- To ensure that the credentials used to connect to source SQL Server instance has the CONTROL SERVER permission.
- To ensure that the credentials used to connect to target Azure SQL DB instance has the CONTROL DATABASE permission on the target Azure SQL Database databases.
- An Azure subscription. If you don't have one, create a free account before you begin.
Use the directions in the article Log in with Azure PowerShell to sign in to your Azure subscription by using PowerShell.
An Azure resource group is a logical container into which Azure resources are deployed and managed. Create a resource group before you can create a virtual machine.
Create a resource group by using the New-AzureRmResourceGroup command.
The following example creates a resource group named myResourceGroup in the EastUS region.
New-AzureRmResourceGroup -ResourceGroupName myResourceGroup -Location EastUS
You can create new instance of Azure Database Migration Service by using the New-AzureRmDataMigrationService
cmdlet.
This cmdlet expects the following required parameters:
- Azure Resource Group name. You can use New-AzureRmResourceGroup command to create Azure Resource group as previously shown and provide its name as a parameter.
- Service name. String that corresponds to the desired unique service name for Azure Database Migration Service
- Location. Specifies the location of the service. Specify an Azure data center location, such as West US or Southeast Asia
- Sku. This parameter corresponds to DMS Sku name. The currently supported Sku name is GeneralPurpose_4vCores.
- Virtual Subnet Identifier. You can use cmdlet New-AzureRmVirtualNetworkSubnetConfig to create a subnet.
The following example creates a service named MyDMS in the resource group MyDMSResourceGroup located in the East US region using a virtual network named MyVNET and subnet called MySubnet.
$vNet = Get-AzureRmVirtualNetwork -ResourceGroupName MyDMSResourceGroup -Name MyVNET
$vSubNet = Get-AzureRmVirtualNetworkSubnetConfig -VirtualNetwork $vNet -Name MySubnet
$service = New-AzureRmDms -ResourceGroupName myResourceGroup `
-ServiceName MyDMS `
-Location EastUS `
-Sku Basic_2vCores `
-VirtualSubnetId $vSubNet.Id`
After creating an Azure Database Migration Service instance, create a migration project. An Azure Database Migration Service project requires connection information for both the source and target instances, as well as a list of databases that you want to migrate as part of the project.
You can create a Database Connection Info object by using the New-AzureRmDmsConnInfo
cmdlet. This cmdlet expects the following parameters:
- ServerType. The type of database connection requested, for example, SQL, Oracle, or MySQL. Use SQL for SQL Server and Azure SQL.
- DataSource. The name or IP of a SQL Server instance or Azure SQL database.
- AuthType. The authentication type for connection, which can be either SqlAuthentication or WindowsAuthentication.
- TrustServerCertificate parameter sets a value that indicates whether the channel is encrypted while bypassing walking the certificate chain to validate trust. Value can be true or false.
The following example creates Connection Info object for source SQL Server called MySourceSQLServer using sql authentication:
$sourceConnInfo = New-AzureRmDmsConnInfo -ServerType SQL `
-DataSource MySourceSQLServer `
-AuthType SqlAuthentication `
-TrustServerCertificate:$true
The next example shows creation of Connection Info for an Azure SQL database server called SQLAzureTarget using sql authentication:
$targetConnInfo = New-AzureRmDmsConnInfo -ServerType SQL `
-DataSource "sqlazuretarget.database.windows.net" `
-AuthType SqlAuthentication `
-TrustServerCertificate:$false
Create a list of AzureRmDataMigrationDatabaseInfo
objects that specifies databases as part of the Azure Database Migration project that can be provided as parameter for creation of the project. The Cmdlet New-AzureRmDataMigrationDatabaseInfo
can be used to create AzureRmDataMigrationDatabaseInfo.
The following example creates AzureRmDataMigrationDatabaseInfo
project for the AdventureWorks2016 database and adds it to the list to be provided as parameter for project creation.
$dbInfo1 = New-AzureRmDataMigrationDatabaseInfo -SourceDatabaseName AdventureWorks2016
$dbList = @($dbInfo1)
Finally you can create Azure Database Migration project called MyDMSProject located in East US using New-AzureRmDataMigrationProject
and adding the previously created source and target connections and the list of databases to migrate.
$project = New-AzureRmDataMigrationProject -ResourceGroupName myResourceGroup `
-ServiceName $service.Name `
-ProjectName MyDMSProject `
-Location EastUS `
-SourceType SQL `
-TargetType SQLDB `
-SourceConnection $sourceConnInfo `
-TargetConnection $targetConnInfo `
-DatabaseInfo $dbList
Finally, create and start Azure Database Migration task. Azure Database Migration task requires connection credential information for both source and target and list of database tables to be migrated in addition to the information already provided with the project created as a prerequisite.
Connection security credentials can be created as a PSCredential object.
The following example shows the creation of PSCredential objects for both source and target connections providing passwords as string variables $sourcePassword and $targetPassword.
$secpasswd = ConvertTo-SecureString -String $sourcePassword -AsPlainText -Force
$sourceCred = New-Object System.Management.Automation.PSCredential ($sourceUserName, $secpasswd)
$secpasswd = ConvertTo-SecureString -String $targetPassword -AsPlainText -Force
$targetCred = New-Object System.Management.Automation.PSCredential ($targetUserName, $secpasswd)
Another parameter needed for migration is mapping of tables from source to target to be migrated. Create dictionary of tables that provides a mapping between source and target tables for migration. The following example illustrates mapping between source and target tables Human Resources schema for the AdventureWorks 2016 database.
$tableMap = New-Object 'system.collections.generic.dictionary[string,string]'
$tableMap.Add("HumanResources.Department", "HumanResources.Department")
$tableMap.Add("HumanResources.Employee","HumanResources.Employee")
$tableMap.Add("HumanResources.EmployeeDepartmentHistory","HumanResources.EmployeeDepartmentHistory")
$tableMap.Add("HumanResources.EmployeePayHistory","HumanResources.EmployeePayHistory")
$tableMap.Add("HumanResources.JobCandidate","HumanResources.JobCandidate")
$tableMap.Add("HumanResources.Shift","HumanResources.Shift")
The next step is to select the source and target databases and provide table mapping to migrate as a parameter by using the New-AzureRmDmsSelectedDB
cmdlet, as shown in the following example:
$selectedDbs = New-AzureRmDmsSelectedDB -MigrateSqlServerSqlDb -Name AdventureWorks2016 `
-TargetDatabaseName AdventureWorks2016 `
-TableMap $tableMap
Use the New-AzureRmDataMigrationTask
cmdlet to create and start a migration task. This cmdlet expects the following parameters:
- TaskType. Type of migration task to create for SQL Server to Azure SQL Database migration type MigrateSqlServerSqlDb is expected.
- Resource Group Name. Name of Azure resource group in which to create the task.
- ServiceName. Azure Database Migration Service instance in which to create the task.
- ProjectName. Name of Azure Database Migration Service project in which to create the task.
- TaskName. Name of task to be created.
- SourceConnection. AzureRmDmsConnInfo object representing source SQL Server connection.
- TargetConnection. AzureRmDmsConnInfo object representing target Azure SQL Database connection.
- SourceCred. PSCredential object for connecting to source server.
- TargetCred. PSCredential object for connecting to target server.
- SelectedDatabase. AzureRmDataMigrationSelectedDB object representing the source and target database mapping.
The following example creates and starts a migration task named myDMSTask:
$migTask = New-AzureRmDataMigrationTask -TaskType MigrateSqlServerSqlDb `
-ResourceGroupName myResourceGroup `
-ServiceName $service.Name `
-ProjectName $project.Name `
-TaskName myDMSTask `
-SourceConnection $sourceConnInfo `
-SourceCred $sourceCred `
-TargetConnection $targetConnInfo `
-TargetCred $targetCred `
-SelectedDatabase $selectedDbs`
You can monitor the migration task running by querying the state property of the task as shown in the following example:
if (($mytask.ProjectTask.Properties.State -eq "Running") -or ($mytask.ProjectTask.Properties.State -eq "Queued"))
{
write-host "migration task running"
}
- Review the migration guidance in the Microsoft Database Migration Guide.