I am trying to add a foreign key constraint which references the same table.
IF NOT EXISTS (SELECT * FROM sys.foreign_keys WHERE object_id = OBJECT_ID(N'[dbo].[FK_Documents_Parent]') AND parent_object_id = OBJECT_ID(N'[dbo].[Documents]'))
BEGIN
ALTER TABLE [dbo].[Documents] WITH CHECK ADD CONSTRAINT [FK_Documents_Parent] FOREIGN KEY(LinkedDocumentId)
REFERENCES [dbo].[Documents] ([Id])
END
The relationship FK_Documents_Parent
does not exist.
However, it throws the error:
The ALTER TABLE statement conflicted with the FOREIGN KEY SAME TABLE constraint "FK_Documents_Parent". The conflict occurred in database "dev", table "dbo.Documents", column 'Id'.