[docs] Not enabling "net changes" feature in SQL Server CDC config;

It's not leveraged by Debezium atm., so enabling this feature isn't providing any value, but adds a cost of additinal indexes.
This commit is contained in:
Gunnar Morling 2020-03-26 10:26:13 +01:00
parent 7560e07e4a
commit 7f016e3766

View File

@ -82,7 +82,7 @@ EXEC sys.sp_cdc_enable_table
@source_name = N'MyTable',
@role_name = N'MyRole',
@filegroup_name = N'MyDB_CT',
@supports_net_changes = 1
@supports_net_changes = 0
GO
----