Viewing post 1 (of 1 total)
so if the source table doesn't have either pk or unique index.. what will be syntax to enable the table?
is it
USE Db
GO
EXEC sys.sp_cdc_enable_table
@source_schema = N'DBO',
@source_name = N'tbl_Name',
@role_name = NULL;
Or...
July 2, 2015 at 9:11 pm
#1810114