Skip to content

Commit 898b7d2

Browse files
Merge pull request #233689 from n0elleli/cdcupdate
Cdcupdate
2 parents f050d3f + 8315f07 commit 898b7d2

File tree

2 files changed

+13
-8
lines changed

2 files changed

+13
-8
lines changed

articles/data-factory/change-data-capture-troubleshoot.md

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: n0elleli
66
ms.service: data-factory
77
ms.subservice:
88
ms.topic: troubleshooting
9-
ms.date: 03/29/2023
9+
ms.date: 04/06/2023
1010
ms.author: noelleli
1111
ms.custom:
1212
---
@@ -64,21 +64,21 @@ EXEC sys.sp_cdc_enable_table
6464

6565
If your SQL source doesn't have SQL Server CDC with net_changed enabled or doesn't have any time-based incremental columns, then the tables in your source will be unavailable for selection.
6666

67-
## Issue: The debug cluster is not available from a warm pool.
67+
## Issue: The debug cluster isn't available from a warm pool.
6868

69-
The debug cluster is not available from a warm pool. There will be a wait time in the order of 1+ minutes.
69+
The debug cluster isn't available from a warm pool. There will be a wait time in the order of 1+ minutes.
7070

7171
## Issue: Trouble in tracking delete operations.
7272

73-
Currently CDC resource supports delete operations for following sink types – Azure SQL Database & Delta. To achieve this, in the column mapping page, please select **keys** column that can be used to determine if a row from the source matches a row from the sink. 
73+
Currently CDC resource supports delete operations for following sink types – Azure SQL Database & Delta. To achieve this in the column mapping page, select **keys** column that can be used to determine if a row from the source matches a row from the sink. 
7474

7575
## Issue: My CDC resource fails when target SQL table has identity columns.
7676

7777
Getting following error on running a CDC when your target sink table has identity columns,
7878

79-
*_Cannot insert explicit value for identity column in table 'TableName' when IDENTITY_INSERT is set to OFF._*
79+
*_Can't insert explicit value for identity column in table 'TableName' when IDENTITY_INSERT is set to OFF._*
8080

81-
Run below query to determine if you have an identity column in your SQL based target.
81+
Run the following query to determine if you have an identity column in your SQL based target.
8282

8383
**Query 4**
8484

@@ -88,7 +88,7 @@ FROM sys.identity_columns
8888
WHERE OBJECT_NAME(object_id) ='TableName'
8989
```
9090

91-
To resolve this user can follow either of the steps
91+
To resolve this user can follow either of these steps:
9292

9393

9494
1. Set IDENTITY_INSERT to ON by running following query at database level and rerun the CDC Mapper
@@ -103,6 +103,10 @@ SET IDENTITY_INSERT dbo.TableName ON;
103103

104104
2. User can remove the specific identity column from mapping while performing inserts.
105105

106+
## Issue: Trouble using Self-hosted integration runtime.
107+
108+
Currently, Self-hosted integration runtime isn't supported in the CDC resource. If trying to connect to an on-premise source, use Azure integration runtime with managed virtual network.
109+
106110

107111
## Next steps
108112
- [Learn more about the change data capture resource](concepts-change-data-capture-resource.md)

articles/data-factory/concepts-change-data-capture-resource.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.service: data-factory
99
ms.subservice: data-movement
1010
ms.custom:
1111
ms.topic: conceptual
12-
ms.date: 02/17/2023
12+
ms.date: 04/06/2023
1313
---
1414

1515
# Change data capture resource overview
@@ -54,6 +54,7 @@ The new Change Data Capture resource in ADF allows for full fidelity change data
5454
## Known limitations
5555
* Currently, when creating source/target mappings, each source and target is only allowed to be used once.
5656
* Complex types are currently unsupported.
57+
* Self-hosted integration runtime (SHIR) is currently unsupported.
5758

5859
For more information on known limitations and troubleshooting assistance, please reference [this troubleshooting guide](change-data-capture-troubleshoot.md).
5960

0 commit comments

Comments
 (0)