Skip to content

Latest commit

 

History

History
40 lines (33 loc) · 2.06 KB

mssql-eng014005.md

File metadata and controls

40 lines (33 loc) · 2.06 KB
title description author ms.author ms.date ms.service ms.subservice ms.topic ms.custom helpviewer_keywords monikerRange
MSSQL_ENG014005
MSSQL_ENG014005
MashaMSFT
mathoma
09/25/2024
sql
replication
reference
updatefrequency5
MSSQL_ENG014005 error
=azuresqldb-mi-current||>=sql-server-2016

MSSQL_ENG014005

[!INCLUDE SQL Server SQL MI]

Message Details

Attribute Value
Product Name SQL Server
Event ID 14005
Event Source MSSQLSERVER
Component [!INCLUDEssDEnoversion]
Symbolic Name
Message Text Could not drop publication. A subscription exists to it.

Explanation

You have tried to drop a publication which has one or more associated subscriptions. A publication can only be dropped if there are no associated subscriptions.

User Action

Drop the subscriptions before dropping the publication. If you use [!INCLUDEssManStudioFull] to drop the publication, it will give you the option to automatically drop all associated subscriptions before dropping the publication. If you use stored procedures, you must explicitly drop the subscriptions first. For more information, see Delete a Push Subscription and Delete a Pull Subscription.

If no subscriptions appear to exist for the publication or if you see this error when you create a publication, you might have a previous subscription that was not completely cleaned up when it was removed. Execute sp_removedbreplication (Transact-SQL) on the database to remove all objects and settings related to replication.

Related content