Skip to content

Commit e5ad832

Browse files
update the documentation (#144)
1 parent ef36cdd commit e5ad832

1 file changed

Lines changed: 6 additions & 5 deletions

File tree

sqlserver-delta-plugins/docs/sqlserver-cdcSource.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,18 +32,19 @@ USE MyDB
3232
GO
3333
3434
EXEC sys.sp_cdc_enable_table
35-
@source_schema = N'dbo',
36-
@source_name = N'MyTable',
37-
@role_name = N'MyRole',
38-
@supports_net_changes = 1
35+
@source_schema = N'dbo',
36+
@source_name = N'MyTable',
37+
@role_name = N'MyRole',
38+
@filegroup_name = N'MyDB_CT',
39+
@supports_net_changes = 0
3940
GO
4041
```
4142

4243
#### Verify Table CDC Accessibility
4344
Run following query to make sure your table has CDC assess.
4445
```
4546
-- =========
46-
-- Verify the user of the connector have access, this query should not have empty result
47+
-- Verify the user (you specify in the replicator to connect to the source DB) has access, this query should not have empty result
4748
-- =========
4849
4950
EXEC sys.sp_cdc_help_change_data_capture

0 commit comments

Comments
 (0)