I've CDC running on SQL server 2008 R2 server. I implemented the same CDC on SQL server 2014 server since we are migrating to a new server. When I query the cdc table on 2008 R2, I don't see Start_LSN appearing more than 2,but in 2014, its appearing more than 3000 in some cases. Any idea what should I check to put hem in synch as this is brining in tens of thousands of more records than I actually need.SELECT [__$start_lsn], COUNT(*) FROM cdc.dbo_TABLE_CT group BY [__$start_lsn]HAVING COUNT(*) > 1
↧