Use this statement to delete publications.
DROP PUBLICATION[ IF EXISTS ] publication-name, ...
Use the IF EXISTS clause if you do not want an error returned when the DROP PUBLICATION statement attempts to remove a publication that does not exist.
The following statement drops the pub_contact publication.
DROP PUBLICATION pub_contact;