Skip to content

Commit b533664

Browse files
authored
Update change-data-capture-troubleshoot.md
making updates
1 parent 04a0f0c commit b533664

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

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

Lines changed: 8 additions & 8 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
@@ -105,7 +105,7 @@ SET IDENTITY_INSERT dbo.TableName ON;
105105

106106
## Issue: Trouble using Self-hosted integration runtime.
107107

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.
109109

110110

111111
## Next steps

0 commit comments

Comments
 (0)