Warning: Constant WP_TEMP_DIR already defined in /var/www/html/blogs/joe/wp-config.php on line 93
Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/blogs/joe/wp-config.php:93) in /var/www/html/blogs/joe/wp-includes/feed-rss2-comments.php on line 8
Comments on: The Transactional Replication Multiplier Effect
https://www.sqlskills.com/blogs/joe/the-transactional-replication-multiplier-effect/
SQL Server Performance Tuning, High Availability and Disaster Recovery BlogThu, 03 Jan 2013 04:32:27 +0000
hourly
1 https://wordpress.org/?v=6.9.4
By: Joe Sack
https://www.sqlskills.com/blogs/joe/the-transactional-replication-multiplier-effect/#comment-623
Thu, 23 Feb 2012 09:12:49 +0000/blogs/joe/post/The-Transactional-Replication-Multiplier-Effect.aspx#comment-623Adding a query to check for duplicates here (distribution database):
SELECT publisher_db, source_object, COUNT(*)
FROM dbo.MSarticles
GROUP BY publisher_db, source_object
HAVING COUNT(*)>1;