File tree Expand file tree Collapse file tree
sqlserver-delta-plugins/docs Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -32,18 +32,19 @@ USE MyDB
3232GO
3333
3434EXEC 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
3940GO
4041```
4142
4243#### Verify Table CDC Accessibility
4344Run 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
4950EXEC sys.sp_cdc_help_change_data_capture
You can’t perform that action at this time.
0 commit comments