Advantage SQL Engine
Delete a publication object from the database.
sp_DropPublication( PublicationName,CHARACTER,200 )
PublicationName (I) |
Name of the publication object to delete. |
AE_INVALID_OBJECT_NAME |
The publication specified by PublicationName cannot be located in the data dictionary, or the publication is in use by one or more subscriptions. |
AdsDDDeletePublication removes an existing publication from the database.
EXECUTE PROCEDURE sp_DropPublication( 'mypub' )
See Also