sp_dropdistributor
Uninstalls the Distributor. This stored procedure is executed at the Distributor on any database.
Syntax
sp_dropdistributor [ [ @no_checks = ] no_checks ]
[ , [ @ignore_distributor = ] ignore_distributor ]
Arguments
[@no_checks = ] no_checks
Indicates whether to check for dependent objects before dropping the Distributor. no_checks is bit, with a default of 0. If 0, sp_dropdistributor checks to make sure that all publishing and distribution objects in addition to the Distributor have been dropped. If 1, sp_dropdistributor drops all the publishing and distribution objects without checking.
[@ignore_distributor = ] ignore_distributor
Indicates whether this stored procedure is executed without connecting to the Distributor. ignore_distributor is bit, with a default of 0. If 0, sp_dropdistributor connects to the Distributor and removes all replication objects. If sp_dropdistributor is unable to connect to the Distributor, the stored procedure fails. If 1, no connection is made to the Distributor and the replication objects are not removed. This is used if the Distributor is being uninstalled or is permanently offline. The objects for this Publisher at the Distributor will not be removed until the Distributor is reinstalled at some future time.
Return Code Values
0 (success) or 1 (failure)
Remarks
sp_dropdistributor is used in all types of replication.
If other Publisher or distribution objects exist on the server, sp_dropdistributor fails unless @no_checks is set to 1.
This stored procedure must be executed after dropping the distribution database by executing sp_dropdistributiondb.
Permissions
Only members of the sysadmin fixed server role can execute sp_dropdistributor.