Skip to content

Commit 6e0b067

Browse files
Merge pull request #226775 from croblesm/0208-dmsv1-rename-to-classic
Adding DMS (classic) tag and comparison to all DMS v1 (SQL Server) articles).
2 parents 9a2ac9a + 21d7365 commit 6e0b067

File tree

5 files changed

+47
-22
lines changed

5 files changed

+47
-22
lines changed

articles/dms/dms-overview.md

Lines changed: 31 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,31 +9,52 @@ ms.reviewer: craigg
99
ms.service: dms
1010
ms.workload: data-services
1111
ms.topic: overview
12-
ms.date: 01/05/2023
12+
ms.date: 02/08/2023
1313
---
1414
# What is Azure Database Migration Service?
1515

1616
Azure Database Migration Service is a fully managed service designed to enable seamless migrations from multiple database sources to Azure data platforms with minimal downtime (online migrations).
1717

1818
[!INCLUDE [database-migration-service-ads](../../includes/database-migration-service-ads.md)]
1919

20+
## Compare versions
21+
22+
In 2021, a newer version of the Azure Database Migration Service was released as an extension for Azure Data Studio, which improved the functionality, user experience and supportability of the migration service. Consider using the [Azure SQL migration extension for Azure Data Studio](./migration-using-azure-data-studio.md) whenever possible.
23+
24+
The following table compares the functionality of the versions of the Database Migration Service:
25+
26+
|Feature |DMS (classic) |Azure SQL extension for Azure Data Studio |Notes|
27+
|---------|---------|---------|---------|
28+
|Assessment | No | Yes | Assess compatibility of the source. |
29+
|SKU recommendation | No | Yes | SKU recommendations for the target based on the assessment of the source. |
30+
|Azure SQL Database - Online migration | No | No |Migrate to Azure SQL Database online with minimal downtime. |
31+
|Azure SQL Database - Offline migration | No | Yes | Migrate to Azure SQL Database offline. |
32+
|Azure SQL Managed Instance - Online migration | No |Yes | Migrate to Azure SQL Managed Instance online with minimal downtime. |
33+
|Azure SQL Managed Instance - Offline migration | Yes |Yes | Migrate to Azure SQL Managed Instance offline. |
34+
|SQL Server on Azure SQL VM - Online migration | Yes | Yes |Migrate to SQL Server on Azure VMs online with minimal downtime.|
35+
|SQL Server on Azure SQL VM - Offline migration | Yes |Yes | Migrate to SQL Server on Azure VMs offline. |
36+
|Migrate logins|Yes | Yes | Migrate logins from your source to your target.|
37+
|Migrate schemas| Yes | No | Migrate schemas from your source to your target. |
38+
|Azure portal support |Yes | Yes | Control your migration by using the Azure portal. |
39+
|Integration with Azure Data Studio | No | Yes | Migration support integrated with Azure Data Studio. |
40+
|Integration with Azure migrate| No | Yes | Migration support integrated with Azure migrate. |
41+
|Regional availability|Yes |Yes | More regions are available with the extension. |
42+
|Pricing|Free | Free |Both are free services, but the extension has the advantage of bringing your own compute.|
43+
|Improved maintenance cost| No | Yes | Maintenance costs are lower with the extension.|
44+
|Resilience, availability, and scalability| No | Yes | Deployed as Service fabric and maintains state in SQL control plane. |
45+
|Improved user experience| No | Yes | The extension is faster, more secure, and easier to troubleshoot. |
46+
|Automation| Yes | Yes |The extension supports PowerShell and Azure CLI. |
47+
|Private endpoints| No | Yes| Connect to your source and target using private endpoints.
48+
|TDE support|No | Yes |Migrate databases encrypted with TDE. |
49+
2050
## Migrate databases to Azure with familiar tools
2151

2252
Azure Database Migration Service integrates some of the functionality of our existing tools and services. It provides customers with a comprehensive, highly available solution. The service uses the [Data Migration Assistant](/sql/dma/dma-overview) to generate assessment reports that provide recommendations to guide you through the required changes before a migration. It's up to you to perform any remediation required. Azure Database Migration Service performs all the required steps when ready to begin the migration process. Knowing that the process takes advantage of Microsoft's best practices, you can fire and forget your migration projects with peace of mind.
2353

24-
> [!NOTE]
25-
> Using Azure Database Migration Service to perform an online migration requires creating an instance based on the Premium pricing tier.
26-
2754
## Regional availability
2855

2956
For up-to-date info about the regional availability of Azure Database Migration Service, see [Products available by region](https://azure.microsoft.com/global-infrastructure/services/?products=database-migration).
3057

31-
## Pricing
32-
33-
For up-to-date info about Azure Database Migration Service pricing, see [Azure Database Migration Service pricing](https://azure.microsoft.com/pricing/details/database-migration/).
34-
35-
36-
3758
## Next steps
3859

3960
* [Status of migration scenarios supported by Azure Database Migration Service](./resource-scenario-status.md)

articles/dms/toc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
href: tutorial-sql-server-to-virtual-machine-offline-ads.md
8080
- name: Known issues and troubleshooting
8181
href: known-issues-azure-sql-migration-azure-data-studio.md
82-
- name: Older tutorials
82+
- name: DMS (classic)
8383
items:
8484
- name: to Azure SQL Database
8585
href: tutorial-sql-server-to-azure-sql.md

articles/dms/tutorial-sql-server-managed-instance-online.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Tutorial: Migrate SQL Server online to SQL Managed Instance"
33
titleSuffix: Azure Database Migration Service
4-
description: Learn to perform an online migration from SQL Server to an Azure SQL Managed Instance by using Azure Database Migration Service.
4+
description: Learn to perform an online migration from SQL Server to an Azure SQL Managed Instance by using Azure Database Migration Service (classic)
55
services: dms
66
author: croblesm
77
ms.author: roblescarlos
@@ -11,13 +11,15 @@ ms.service: dms
1111
ms.workload: data-services
1212
ms.custom: seo-lt-2019, ignite-2022
1313
ms.topic: tutorial
14-
ms.date: 01/12/2023
14+
ms.date: 02/08/2023
1515
---
1616

17-
# Tutorial: Migrate SQL Server to an Azure SQL Managed Instance online using DMS
17+
# Tutorial: Migrate SQL Server to an Azure SQL Managed Instance online using DMS (classic)
1818

1919
> [!NOTE]
20-
> This tutorial uses an older version of the Azure Database Migration Service. For improved functionality and supportability, consider migrating to Azure SQL Managed Instance by using the [Azure SQL migration extension for Azure Data Studio](tutorial-sql-server-managed-instance-online-ads.md).
20+
> This tutorial uses an older version of the Azure Database Migration Service. For improved functionality and supportability, consider migrating to Azure SQL Managed Instance by using the [Azure SQL migration extension for Azure Data Studio](tutorial-sql-server-managed-instance-online-ads.md).
21+
>
22+
> To compare features between versions, review [compare versions](dms-overview.md#compare-versions).
2123
2224
You can use Azure Database Migration Service to migrate the databases from a SQL Server instance to an [Azure SQL Managed Instance](/azure/azure-sql/managed-instance/sql-managed-instance-paas-overview) with minimal downtime. For additional methods that may require some manual effort, see the article [SQL Server instance migration to Azure SQL Managed Instance](/azure/azure-sql/migration-guides/managed-instance/sql-server-to-managed-instance-guide).
2325

articles/dms/tutorial-sql-server-to-azure-sql.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,15 @@ ms.service: dms
1111
ms.workload: data-services
1212
ms.custom: seo-lt-2019, ignite-2022
1313
ms.topic: tutorial
14-
ms.date: 01/12/2023
14+
ms.date: 02/08/2023
1515
---
1616

17-
# Tutorial: Migrate SQL Server to Azure SQL Database using DMS
17+
# Tutorial: Migrate SQL Server to Azure SQL Database using DMS (classic)
1818

1919
> [!NOTE]
20-
> This tutorial uses an older version of the Azure Database Migration Service. For improved functionality and supportability, consider migrating to Azure SQL Database by using the [Azure SQL migration extension for Azure Data Studio](tutorial-sql-server-azure-sql-database-offline-ads.md).
21-
20+
> This tutorial uses an older version of the Azure Database Migration Service. For improved functionality and supportability, consider migrating to Azure SQL Database by using the [Azure SQL migration extension for Azure Data Studio](tutorial-sql-server-azure-sql-database-offline-ads.md).
21+
>
22+
> To compare features between versions, review [compare versions](dms-overview.md#compare-versions).
2223
2324
You can use Azure Database Migration Service to migrate the databases from a SQL Server instance to [Azure SQL Database](/azure/sql-database/). In this tutorial, you migrate the [AdventureWorks2016](/sql/samples/adventureworks-install-configure#download-backup-files) database restored to an on-premises instance of SQL Server 2016 (or later) to a single database or pooled database in Azure SQL Database by using Azure Database Migration Service.
2425

articles/dms/tutorial-sql-server-to-managed-instance.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,15 @@ ms.service: dms
1111
ms.workload: data-services
1212
ms.custom: seo-lt-2019, fasttrack-edit, ignite-2022
1313
ms.topic: tutorial
14-
ms.date: 01/12/2023
14+
ms.date: 02/08/2023
1515
---
1616

17-
# Tutorial: Migrate SQL Server to an Azure SQL Managed Instance offline using DMS
17+
# Tutorial: Migrate SQL Server to an Azure SQL Managed Instance offline using DMS (classic)
1818

1919
> [!NOTE]
2020
> This tutorial uses an older version of the Azure Database Migration Service. For improved functionality and supportability, consider migrating to Azure SQL Managed Instance by using the [Azure SQL migration extension for Azure Data Studio](tutorial-sql-server-managed-instance-offline-ads.md).
21-
21+
>
22+
> To compare features between versions, review [compare versions](dms-overview.md#compare-versions).
2223
2324
You can use Azure Database Migration Service to migrate the databases from a SQL Server instance to an [Azure SQL Managed Instance](/azure/azure-sql/managed-instance/sql-managed-instance-paas-overview). For additional methods that may require some manual effort, see the article [SQL Server to Azure SQL Managed Instance](/azure/azure-sql/migration-guides/managed-instance/sql-server-to-managed-instance-guide).
2425

0 commit comments

Comments
 (0)