Thursday, June 25, 2015

(Solved) SQL Server Error: Cannot drop the database because it is being used for replication.

Solution:

Drop the replication in the corresponding database using the below Stored Procedure query. Then delete the Database.
sp_removedbreplication 'YOUR_DATABASE_NAME'

No comments:

Post a Comment