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