Skip to content

Commit 85af6ad

Browse files
20250507 sql 2025 support
1 parent c068bce commit 85af6ad

File tree

3 files changed

+14
-11
lines changed

3 files changed

+14
-11
lines changed

articles/synapse-analytics/synapse-link/faq.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ metadata:
88
ms.service: azure-synapse-analytics
99
ms.topic: faq
1010
ms.subservice: synapse-link
11-
ms.date: 10/21/2024
11+
ms.date: 05/07/2025
1212
ms.custom: references_regions
1313
title: Azure Synapse Link for SQL FAQ
1414
summary: In this guide, find the most frequently asked questions for Azure Synapse Link for SQL.
@@ -23,7 +23,7 @@ sections:
2323
- question: |
2424
Does Azure Synapse Link for SQL support Azure SQL Managed Instance as a source store?
2525
answer: |
26-
No, currently Azure Synapse Link for SQL only supports Azure SQL Database and SQL Server (starting with SQL Server 2022) as the source.
26+
No, currently Azure Synapse Link for SQL only supports Azure SQL Database and SQL Server 2022 as the source.
2727
- question: |
2828
Do I need to stop the link connection when I want to add or remove tables to be replicated?
2929
answer: |
@@ -124,18 +124,18 @@ sections:
124124
answer: |
125125
A new change feed processor has been integrated into the Azure SQL Database and SQL Server 2022 engine to enable this functionality.
126126
- question: |
127-
How do I rotate or change the SAS for the Landing Zone for Azure Synapse Link for SQL Server?
127+
How do I rotate or change the SAS for the Landing Zone for Azure Synapse Link for SQL Server 2022?
128128
answer: |
129129
If the SAS has expired for the user managed storage account for the Landing Zone, use [ALTER DATABASE SCOPED CREDENTIAL](/sql/t-sql/statements/alter-database-scoped-credential-transact-sql) to update the database credential for the new SAS.
130130
- question: |
131131
What is the impact when a user removes the Azure Synapse workspace that contains an Azure Synapse Link to Azure SQL Database?
132132
answer: |
133133
If the Azure Synapse workspace is removed, Azure SQL Database will stop data replication from landing zone into Azure Synapse. The system stored procedure [sp_change_feed_drop_table_group](/sql/relational-databases/system-stored-procedures/sp-change-feed-drop-table-group) will be called automatically, and the storage account for the landing zone is managed and will be cleaned up automatically. If this fails, you might receive error 22739 from the SynapseGatewayClient in [sys.dm_change_feed_errors](/sql/relational-databases/system-dynamic-management-views/sys-dm-change-feed-errors). If this occurs, you can manually drop the `changefeed` table group with `sp_change_feed_drop_table_group`.
134134
- question: |
135-
What is the impact when a user removes the Azure Synapse workspace that contains an Azure Synapse Link for SQL Server?
135+
What is the impact when a user removes the Azure Synapse workspace that contains an Azure Synapse Link for SQL Server 2022?
136136
answer: |
137-
In SQL Server, since landing zone storage account is user managed, data will continue to be published to the landing zone. You should disable the Azure Synapse Link by dropping the relevant table groups with [sp_change_feed_drop_table_group](/sql/relational-databases/system-stored-procedures/sp-change-feed-drop-table-group), and manually remove the storage account for the landing zone.
137+
In SQL Server 2022, since landing zone storage account is user managed, data will continue to be published to the landing zone. You should disable the Azure Synapse Link by dropping the relevant table groups with [sp_change_feed_drop_table_group](/sql/relational-databases/system-stored-procedures/sp-change-feed-drop-table-group), and manually remove the storage account for the landing zone.
138138
- question: |
139-
What is the impact when a user intentionally removes the Azure Synapse Link landing zone for Azure Synapse Link for SQL Server?
139+
What is the impact when a user intentionally removes the Azure Synapse Link landing zone for Azure Synapse Link for SQL Server 2022?
140140
answer: |
141-
In SQL Server, the landing zone storage account is user managed. If the landing zone storage account is no longer accessible, you will see errors in the [sys.dm_change_feed_errors](/sql/relational-databases/system-dynamic-management-views/sys-dm-change-feed-errors). You should disable the Azure Synapse Link by dropping the relevant table groups with [sp_change_feed_drop_table_group](/sql/relational-databases/system-stored-procedures/sp-change-feed-drop-table-group).
141+
In SQL Server 2022, the landing zone storage account is user managed. If the landing zone storage account is no longer accessible, you will see errors in the [sys.dm_change_feed_errors](/sql/relational-databases/system-dynamic-management-views/sys-dm-change-feed-errors). You should disable the Azure Synapse Link by dropping the relevant table groups with [sp_change_feed_drop_table_group](/sql/relational-databases/system-stored-procedures/sp-change-feed-drop-table-group).

articles/synapse-analytics/synapse-link/sql-database-synapse-link.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: Rodrigossz
55
ms.service: azure-synapse-analytics
66
ms.topic: conceptual
77
ms.subservice: synapse-link
8-
ms.date: 11/16/2022
8+
ms.date: 05/07/2025
99
ms.author: rosouz
1010
---
1111

@@ -21,7 +21,10 @@ You can start, stop, pause or resume a link connection. When started, a link con
2121

2222
You need to select compute core counts for each link connection to replicate your data. The core counts represent the compute power and it impacts your data replication latency and cost.
2323

24-
You also have the chance to make a trade-off between cost and latency by selecting the continuous or batch mode to replicate the data. When you select continuous mode, the runtime will be running continuously so that any changes applied to your SQL DB or SQL Server will be replicated to Synapse with low latency. When you select batch mode with specified interval, the changes applied to your SQL DB or SQL Server will be accumulated and replicated to Synapse in a batch mode with specified interval. By doing so, you can save cost as you are only charged for the time when the runtime is required to replicate your data. After each batch of data is replicated, the runtime will be shut down automatically.
24+
You also have the chance to make a trade-off between cost and latency by selecting the continuous or batch mode to replicate the data.
25+
26+
- When you select continuous mode, the runtime will be running continuously so that any changes applied to your Azure SQL Database or SQL Server 2022 instance will be replicated to Synapse with low latency.
27+
- When you select batch mode with specified interval, the changes applied to your Azure SQL Database or SQL Server 2022 instance will be accumulated and replicated to Synapse in a batch mode with specified interval. By doing so, you can save cost as you are only charged for the time when the runtime is required to replicate your data. After each batch of data is replicated, the runtime will be shut down automatically.
2528

2629
## Monitoring
2730

articles/synapse-analytics/synapse-link/sql-synapse-link-overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ author: Rodrigossz
55
ms.service: azure-synapse-analytics
66
ms.topic: overview
77
ms.subservice: synapse-link
8-
ms.date: 11/18/2024
8+
ms.date: 05/07/2025
99
ms.author: rosouz
1010
---
1111

1212
# What is Azure Synapse Link for SQL?
1313

1414
Azure Synapse Link for SQL enables near real time analytics over operational data in Azure SQL Database or SQL Server 2022. With a seamless integration between operational stores including Azure SQL Database and SQL Server 2022 and Azure Synapse Analytics, Azure Synapse Link for SQL enables you to run analytics, business intelligence and machine learning scenarios on your operational data with minimum impact on source databases with a new change feed technology.
1515

16-
The following image shows the Azure Synapse Link integration with Azure SQL DB, SQL Server 2022, and Azure Synapse Analytics:
16+
The following image shows the Azure Synapse Link integration with Azure SQL Database, SQL Server 2022, and Azure Synapse Analytics:
1717

1818
:::image type="content" source="../media/sql-synapse-link-overview/synapse-link-sql-architecture.png" alt-text="Diagram of the Azure Synapse Link for SQL architecture.":::
1919

0 commit comments

Comments
 (0)