You alter a publication by adding, modifying, deleting articles, or by renaming the publication.
Altering publications in a running SQL Remote system can cause replication errors and a loss of data in the replication system. See Upgrading and resynchronization.
 To alter a publication (Sybase Central)
 To alter a publication (Sybase Central)Use the SQL Anywhere 12 plug-in to connect to the database as a user who owns the publication or as a user with DBA authority.
In the left pane, select the Publications folder.
Right-click the article you want to alter and choose Properties to edit the publication.
 To alter a publication (SQL)
 To alter a publication (SQL)Connect to the database as a user who owns the publication or as a user with DBA authority.
Execute an ALTER PUBLICATION statement.
For example, the following statement adds the Customers table to the PubContacts publication.
| ALTER PUBLICATION PubContacts ( ADD TABLE Customers ); | 
For example, the following statement redefines the Customers article in the PubContacts publication.
| ALTER PUBLICATION PubContacts ( ALTER ARTICLE Customers ( name, surname ) ); | 
 See also
 See also|  | Discuss this page in DocCommentXchange.
                   | Copyright © 2010, iAnywhere Solutions, Inc. - SQL Anywhere 12.0.0 |