You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/data-factory/change-data-capture-troubleshoot.md
+11-7Lines changed: 11 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ author: n0elleli
6
6
ms.service: data-factory
7
7
ms.subservice:
8
8
ms.topic: troubleshooting
9
-
ms.date: 03/29/2023
9
+
ms.date: 04/06/2023
10
10
ms.author: noelleli
11
11
ms.custom:
12
12
---
@@ -64,21 +64,21 @@ EXEC sys.sp_cdc_enable_table
64
64
65
65
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.
66
66
67
-
## Issue: The debug cluster is not available from a warm pool.
67
+
## Issue: The debug cluster isn't available from a warm pool.
68
68
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.
70
70
71
71
## Issue: Trouble in tracking delete operations.
72
72
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.
74
74
75
75
## Issue: My CDC resource fails when target SQL table has identity columns.
76
76
77
77
Getting following error on running a CDC when your target sink table has identity columns,
78
78
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._*
80
80
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.
82
82
83
83
**Query 4**
84
84
@@ -88,7 +88,7 @@ FROM sys.identity_columns
88
88
WHERE OBJECT_NAME(object_id) ='TableName'
89
89
```
90
90
91
-
To resolve this user can follow either of the steps
91
+
To resolve this user can follow either of these steps:
92
92
93
93
94
94
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;
103
103
104
104
2. User can remove the specific identity column from mapping while performing inserts.
105
105
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
+
106
110
107
111
## Next steps
108
112
-[Learn more about the change data capture resource](concepts-change-data-capture-resource.md)
Copy file name to clipboardExpand all lines: articles/data-factory/concepts-change-data-capture-resource.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ ms.service: data-factory
9
9
ms.subservice: data-movement
10
10
ms.custom:
11
11
ms.topic: conceptual
12
-
ms.date: 02/17/2023
12
+
ms.date: 04/06/2023
13
13
---
14
14
15
15
# Change data capture resource overview
@@ -54,6 +54,7 @@ The new Change Data Capture resource in ADF allows for full fidelity change data
54
54
## Known limitations
55
55
* Currently, when creating source/target mappings, each source and target is only allowed to be used once.
56
56
* Complex types are currently unsupported.
57
+
* Self-hosted integration runtime (SHIR) is currently unsupported.
57
58
58
59
For more information on known limitations and troubleshooting assistance, please reference [this troubleshooting guide](change-data-capture-troubleshoot.md).
0 commit comments