When no WHERE clause is specified in a publication definition, all changed rows in the publication are uploaded. You can add WHERE clauses to articles in the publication to limit the rows to be uploaded to those that have changed and that satisfy the search condition in the WHERE clause.
The search condition in the WHERE clause can only reference columns that are included in the article. In addition, you cannot use any of the following in the WHERE clause:
subqueries
variables
non-deterministic functions
These conditions are not enforced, but breaking them can lead to unexpected results. Any errors relating to the WHERE clause are generated when the DML is run against the table referred to by the WHERE clause, and not when the publication is defined.
Connect to the remote database as a user with DBA authority using the SQL Anywhere plug-in.
Open the Publications folder.
Choose File » New » Publication.
In the What Do You Want To Name The New Publication field, enter a name for the new publication. Click Next.
Click Next.
On the Available Tables list, select a table. Click Add.
Click Next.
Click Next.
In the Articles List, select a table and enter the search condition in the The Selected Article Has the following WHERE clause pane.
Click Finish.
Connect to the remote database as a user with DBA authority.
Execute a CREATE PUBLICATION statement that includes the tables you want to include in the publication and a WHERE condition.
The following example creates a publication that includes the entire employees table and all rows in the SalesOrder table that have not been marked as archived.
CREATE PUBLICATION main_publication ( TABLE Employees, TABLE SalesOrders WHERE archived = 'N' ); |
By changing the archived column in the table from any other value to an N, a delete is sent to the MobiLink server during the next synchronization. Conversely, by changing the archived column from N to any other value, an insert is sent. The update to the archived column is not sent to the MobiLink server.
Discuss this page in DocCommentXchange. Send feedback about this page using email. |
Copyright © 2009, iAnywhere Solutions, Inc. - SQL Anywhere 11.0.1 |