BackOffice Products
1824066 Members
2841 Online
109668 Solutions
New Discussion

SQL Server 2000 replication problem

 
ALEX DAWSON
New Member

SQL Server 2000 replication problem

A publication keeps failing with the error 3724 (cannot drop table 'x' becuase it's being used for replication. However, the table isn't being used for replication. On the subscriber (which is also a publisher itself) I've dropped all publications and dropped replication from that database and I still can't drop the table either by the publication or by using SQL
1 REPLY 1
Keld
Advisor

Re: SQL Server 2000 replication problem

Try
sp_configure 'allow_updates', 1
go
reconfigure withoveride
update master..sysdatabases set category=0 where name ='distribution'

distribution hould be set to 0, After this has been changed you will be able to work again :-)