RE: Error creating new push subscription after deleting the existi



Yes, it's possible. The correct steps are listed in the BOL topic "How to
Delete a Push Subscription (Transact-SQL)" or the KB article 324401 (How to
manually remove a replication in SQL Server 2000
http://support.microsoft.com/?id=324401):

To drop a push subscription to all articles for a transactional
publication, run the following script at Publisher:

USE <<Publication database name>>
GO
EXEC sp_dropsubscription @publication = N'<<Publication name>>', @article
= N'all', @subscriber = N'all', @destination_db = N'all'

Or you can use the Enterprise Manager:

At the Publisher, open SQL Server Enterprise Manager, expand a server
group, expand the Replication folder, expand the Publications folder, click
the publication that has the subscription you want to delete, right-click
the push subscription for that publication in SQL Server Enterprise
Manager, and then click Delete.

Subscription information at the Subscriber will not be deleted, and you
should delete it manually. But there is no need to delete the jobs.

Since you have deleted all the jobs and some of them are replication jobs
that are not specific to any subscription, the current configured
replication has been broken and you need to rebuild them. To do so, first
disable Publishing and Distribution: In SQL Server Enterprise Manager,
expand a server group, expand the Distributor, right-click the Replication
folder, and then click Disable Publishing.

Feel free to let me know if you have any other concerns.

Sincerely,

William Wang
Microsoft Online Partner Support

When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.

This posting is provided "AS IS" with no warranties, and confers no rights.

.



Relevant Pages

  • Re: Transactional replication from SQL Server 2005 to SQL Server 7 - how?
    ... SQL Server 7.0 from the SQL2005 management tools but I would encourage to ... primary keys are replicated as unique indexes if you ... configure replication using the SQL2000 Enterprise Manager. ... If you plan to reinitialize your SQL2000->SQL2005 subscription in the ...
    (microsoft.public.sqlserver.replication)
  • Re: Help in setting up SQL Server 2005 Replication
    ... Director of Text Mining and Database Strategy ... Looking for a SQL Server replication book? ... about subscription. ... "Run under the SQL Server Agent's Account". ...
    (microsoft.public.sqlserver.replication)
  • Re: Cannot Update Identity Column
    ... > Looking for a SQL Server replication book? ... The publication pushes a subscription to a database on the same ... The articles are setup to "Keep the existing table ...
    (microsoft.public.sqlserver.replication)
  • Re: Replication Monitor didnt work because different collations
    ... Looking for a SQL Server replication book? ... SQL 2005 filtered merge replication. ... We changed collations to match the server collation and Replication ... After this change we started all publication snapshots. ...
    (microsoft.public.sqlserver.replication)
  • Re: Replication to SQL Server 2005 Express
    ... Looking for a SQL Server replication book? ... I have a SQL Server 2005 Enterprise Edition with a database. ... and if I make a local subscription on the SQL Server 2005 Enterprise ...
    (microsoft.public.sqlserver.replication)

Loading