0% found this document useful (0 votes)
6 views

Handling Data Consistency Errors in SQL Server Transactional Replication...

The document addresses data consistency errors in SQL Server transactional replication, particularly issues like duplicate key violations that cause replication to break and lead to downtime. It provides solutions to allow replication to continue despite these errors by using the -SkipErrors parameter in the Distribution Agent Profile. Additionally, it emphasizes the importance of investigating the root causes of these errors to maintain data integrity between the publisher and subscriber.

Uploaded by

informatica
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
6 views

Handling Data Consistency Errors in SQL Server Transactional Replication...

The document addresses data consistency errors in SQL Server transactional replication, particularly issues like duplicate key violations that cause replication to break and lead to downtime. It provides solutions to allow replication to continue despite these errors by using the -SkipErrors parameter in the Distribution Agent Profile. Additionally, it emphasizes the importance of investigating the root causes of these errors to maintain data integrity between the publisher and subscriber.

Uploaded by

informatica
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 6

MSSQLTips.

com (/) MENU

Handling Data Consistency Errors in SQL Server


Transactional Replication

By: Robert Pearl (/sqlserverauthor/58/robert-pearl/) | Updated: 2011-08-08 | Comments (6) | Related: More (/sql-server-
dba-resources/) > Replication (/sql-server-tip-category/7/replication/)

Problem
Recently at a client assessment, the chief complaint that every time a "Violation Constraint, Cannot insert duplicate key error...."
occurs replication breaks and this causes significant downtime on their production environment while they need to setup
replication again, reinitialize and resynchronize. Unfortunately with transactional replication, this is totally normal behavior.

The common data consistency errors that can occur are:

2601 Cannot insert duplicate key row in object '%.*ls' with unique index '%.*ls'
20598 The row was not found at the Subscriber when applying the replicated command.
2627 Violation of PRIMARY KEY constraint 'PK__A'. Cannot insert duplicate key in object 'dbo.A'.

Since real-time data replication is synchronous, it is an all-or-none proposition, meaning that in order to guarantee transactional
consistency and atomicity, what ever transactions are committed to the publisher, must be committed to the subscriber. For
example, a write operation (INSERT, UPDATE, DELETE) either completes on both sides or not at all. These are not considered
complete until acknowledgement from the subscriber. Therefore, when there is a data consistency error, and the replication
engine cannot guarantee consistency - the distribution agent stops.

Here is a typical violation of a Primary Key constraint error as shown by Replication Monitor:

/
Ultimately, you must investigate further as to the cause of these consistency errors, and fix the problem. However, there are some
options that can allow Replication to continue while you find out the root cause which we will cover in this tip.

Solution
By default, when the Distribution Agent encounters any of the above-mentioned errors, the agent stops. However, there are some
workarounds, that will prevent these consistency errors from interfering with replication and let it continue running. SQL Server will
log these errors, which is very important, so you can come back to them, understand what the error condition is, why it is
occurring, and resolve the issue.

There are some caveats of course, and it is recommended to use the workaround cautiously, as it is better to know why the error
occurred or why the specific transaction needs to be skipped rather than resolved. We'll talk about some of these scenarios later
on.

Skipping These Errors


To have Replication "ignore" these errors, Microsoft provides us with a set of predefined replication agent files, that are installed
on the Distributor. The one we are discussing is the Distribution Agent Profile, which defines parameters in the profiles for the
Distribution Agent. Here we can find the -SkipErrors parameter that will skip errors 2601, 2627, and 20598 as described above.

To change the default profile that the Distributor is using, you can access the Agent Profiles dialog box from Replication Monitor.

Once Replication Monitor is launched, you'll then need to drill-down to the publisher under "My Publishers", select the appropriate
Publication, right-click and select "Agent Profiles" as shown here:

When the Agent Profiles window is displayed, make sure the "Distribution Agents" page is selected. Then in the Agent profiles
section, click and select the "Default for New" checkbox for "Continue on data consistency errors".
/
You can click on the ellipsis button next to this profile, to view its parameters. The properties dialog box will open, and if you scroll
down a bit, you will see the -SkipErrors Parameter, as highlighted below:

/
Finally, click , and then to set the new default profile for the Distribution Agent.

Enabling the Profile Changes


Before the new profile takes affect, you MUST restart the Distribution Agent. There are two ways to do this. I think this confuses
most people, because there are various replication agents, but none specifically say "Distribution Agent".

1. You can drill-down in SSMS to your Replication Folder --> Local Subscriptions
2. Select your subscriber, and right click "View Synchronization Status" You will see the START/STOP buttons. This is your
distribution agent.
3. Click . A message will prompt you, "Are you sure you want to stop synchronizing? Data that has already been synchronized
will not be rolled back"
4. Click .
5. Once the agent is stopped, then click to start synchronizing again.

To restart the distribution agent in T-SQL, you can run the following commands from a SQL Query Window, and must provide the
specified parameter info:
/
-- To STOP the Distribution Agent:
sp_MSstopdistribution_agent @publisher, @publisher_db, @publication, @subscriber, @subscriber_db

--To START the Distribution Agent:


sp_MSstartdistribution_agent @publisher, @publisher_db, @publication, @subscriber, @subscriber_db

The Continue on Data Consistency Errors profile is now active.

Reasons Why Consistency Errors Occur in Replication


Now that we have told Replication to "skip" these errors, and carry on, this band-aid approach still needs to be looked at more
closely. We need to answer, why are these errors occurring? Here are some of the reasons why:

Your subscriber should be "read-only". In other words, the only thing that should be writing to your Subscriber, is the Publisher.
You need to check if you are doing ad-hoc updates, inserts, deletes of your own. (Applies to 1-way transactional replication)
Check to see if you have any triggers enabled at the subscriber. If triggers are fired, there could be INSERTS, UPDATES and
DELETES putting duplicate rows in a table(s).
Check if you are replicating identity columns which can cause "duplicate key" errors, and primary key collisions.
Deferred Updates - UPDATE Statements May be Replicated as DELETE/INSERT Pairs - can cause constraint errors.
Make sure the publisher and subscriber are in-sync - Run Validations, or any data compare tool between the two databases.

You can view the logged consistency errors by executing the following query against the distribution database:

Use Distribution
go

select * from dbo.MSrepl_errors


where error_code in ('2601','2627','25098')

Important information to help troubleshoot, such as the time, error details, and the xact_seqno, resides in this table. You will see
similar output to this:

In my next article on this topic, I will expand and provide ways of actually resolving these consistency errors, and ensure that your
publisher and subscriber are in perfect harmony.

Next Steps
To learn more about Replication Agent Profiles, including the one written about in this article, see this Microsoft TechNet article:
http://technet.microsoft.com/en-us/library/ms151223.aspx (http://technet.microsoft.com/en-us/library/ms151223.aspx).
When implementing the above solution, you may want to read Microsoft's recommendation on using the "-SkipErrors"
parameter in Distribution Agent cautiously (http://support.microsoft.com/kb/327817).
Check out this great collection of Replication Tips (/category.asp?catid=7), previously published on MSSQLTips.com
Specifically, Changing Not For Replication Value for Identity Columns in SQL Server (/sqlservertip/1274/change-not-for-
replication-value-for-sql-server-identity-columns/) is one tip that can alleviate consistency errors.
Learn more about how deferred updates work, in another MS Support article: UPDATE Statements May be Replicated as
DELETE/INSERT Pairs (http://support.microsoft.com/kb/238254/EN-US)

/
Last Updated: 2011-08-08

About the author


(/sqlserverauthor/58/robert-pearl/) Robert Pearl is a SQL MVP, and President of Pearl Knowledge Solutions, Inc., offering SQLCentric monitoring and
DBA services.

View all my tips (/sqlserverauthor/58/robert-pearl/)

Related Resources
More SQL Server DBA Tips... (/sql-server-dba-resources/)

Follow
Get Free SQL Tips (/get-free-sql-server-tips/?ref=GetFooterMenu)
Twitter (https://twitter.com/mssqltips)
LinkedIn (https://www.linkedin.com/groups/2320891/)
Facebook (https://www.facebook.com/mssqltips/)
Pinterest (https://www.pinterest.com/mssqltips/)
RSS (https://feeds.feedburner.com/MSSQLTips-LatestSqlServerTips)

Learning Resources
DBAs (/sql-server-dba-resources/) Tutorials (/sql-server-tutorials/)
Developers (/sql-server-developer-resources/) Webcasts (/sql-server-webcasts/)
BI Professionals (/sql-server-business-intelligence-resources/) Whitepapers (/sql-server-whitepapers/)
Careers (/sql-server-professional-development-resources/) Tools (/sql-server-tools/)
Today's Tip (/todays-sql-server-tip/)
Search
Tip Categories (/sql-server-categories/)
Search By TipID (/search-tip-id/)
Authors (/sql-server-mssqltips-authors/)

Community More Info


First Timer? (/learn-more-about-mssqltips/) Join (/get-free-sql-server-tips/?ref=JoinFooterMenu)
Pictures (/mssqltips-community/1/) About (/about/)
Contribute (/contribute/) Copyright (/copyright/)
Event Calendar (/sql-server-event-list/) Privacy (/privacy/)
User Groups (/sql-server-user-groups/) Disclaimer (/disclaimer/)
Author of the Year (/mssqltips-author-of-year/) Feedback (/feedback/)
Advertise (/advertise/)

Copyright (c) 2006-2019 Edgewood Solutions, LLC (https://www.edgewoodsolutions.com) All rights reserved
Some names and products listed are the registered trademarks of their respective owners.

You might also like