With SQL Server 2008 and transactional replication (with updatable subscriptions), I get the following error during replication:

The DELETE statement conflicted with the SAME TABLE REFERENCE constraint "FK_tblSection_tblSection".

I don't understand why a DELETE statement is executed since I'm doing an UPDATE on the Publisher DB.

To reproduce, I create a new empty database and I create the following table:

CREATE TABLE [dbo].[tblSection](
    [SectionId] [int] IDENTITY(1,1) NOT NULL,
    [ParentId] [int] NULL,
    [Name] [nvarchar](256) NOT NULL,
    [Type] [nchar](1) NOT NULL,
    [Tag] [nvarchar](16) NOT NULL,
    [OrderIndex] [int] NULL,
 CONSTRAINT [PK_tblSection] PRIMARY KEY CLUSTERED 
(
    [SectionId] ASC
)WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY],
 CONSTRAINT [IX_tblSection_Name] UNIQUE NONCLUSTERED 
(
    [Name] ASC,
    [ParentId] ASC,
    [Type] ASC
)WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY],
 CONSTRAINT [IX_tblSection_OrderIndex] UNIQUE NONCLUSTERED 
(
    [ParentId] ASC,
    [Type] ASC,
    [OrderIndex] ASC
)WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY],
 CONSTRAINT [IX_tblSection_Tag] UNIQUE NONCLUSTERED 
(
    [Tag] ASC,
    [ParentId] ASC,
    [Type] ASC
)WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
) ON [PRIMARY]

GO

ALTER TABLE [dbo].[tblSection]  WITH CHECK ADD  CONSTRAINT [FK_tblSection_tblSection] FOREIGN KEY([ParentId])
REFERENCES [dbo].[tblSection] ([SectionId])
GO

ALTER TABLE [dbo].[tblSection] CHECK CONSTRAINT [FK_tblSection_tblSection]
GO

I create a new Publication with only one article (tblSection table). Make sure to set the option 'Copy foreign key constraints' to True. I create a Subscriber DB and I setup a push subscription.

I insert two rows in the table on the Publisher DB:

INSERT INTO tblSection ([ParentId], [Name], [Type], [Tag], [OrderIndex])
VALUES (NULL, 'Test1', 'S', 'TS1', 0)

INSERT INTO tblSection ([ParentId], [Name], [Type], [Tag], [OrderIndex])
VALUES (SCOPE_IDENTITY(), 'Test2', 'S', 'TS2', 0)

These two rows are replicated properly (no error). However, when I'm doing an update on the Publisher DB as follow I get the error:

UPDATE tblSection SET [Type] = 'C' WHERE Name = 'Test1'

After doing some tests, I realized that if I remove all the three non clustered indexes, the UPDATE command is replicated properly (no error).

Anyone knows what is going on?

Thank you

link|improve this question
According to this article, an UPDATE statement may be replicated as a DELETE/INSERT pair if the updated column is part of a unique constraint. According to this other article, I could set a flag to enable singleton updates. With this flag, an update to a unique column that affects only one row would be replicated as an UPDATE and not as a DELETE/INSERT pair. However, it says do not use this flag with updatable subscriptions. This means I will have to replace my unique constraints by triggers. – Francois C Sep 6 '11 at 20:14
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.