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
+8-8Lines changed: 8 additions & 8 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
@@ -105,7 +105,7 @@ SET IDENTITY_INSERT dbo.TableName ON;
105
105
106
106
## Issue: Trouble using Self-hosted integration runtime.
107
107
108
-
Currently, Self-hosted integtration runtime is not supported in the CDC resource. If trying to connect to an on-premise source, please use Azure integration runtime with managed virtual network.
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.
0 commit comments