Use this statement to alter a publication. A publication identifies data in a remote database that is to be synchronized.
ALTER PUBLICATION publication-name alterpub-clause
alterpub-clause : ADD TABLE table-name [ WHERE search-condition ] | ALTER TABLE table-name [ WHERE search-condition ] | { DROP | DELETE } TABLE table-name | RENAME publication-name
Automatic commit.
The following ALTER PUBLICATION statement adds the Customers table to the pub_contact publication.
ALTER PUBLICATION pub_contact ADD TABLE Customers; |
Discuss this page in DocCommentXchange. Send feedback about this page using email. |
Copyright © 2009, iAnywhere Solutions, Inc. - SQL Anywhere 11.0.1 |