A publication can only contain specific table rows. In Sybase Central or Interactive SQL, a WHERE clause limits the rows that are uploaded to those that have changed and satisfy a search condition in the WHERE clause.
To upload all changed rows, do not specify a WHERE clause.
You cannot use a CREATE PUBLICATION statement with a WHERE clause on this platform.
In Sybase Central, you can perform this task while working with the connected database.
Connect to the UltraLite database.
Right-click the Publications folder, and choose New » Publication.
In the What Do You Want To Name The New Publication field, type a name for the new publication.
Click Next.
In the Available Tables list, select a table and click Add.
Click the WHERE Clauses tab, and select the table from the Articles list. Optionally, you can use the Insert window to assist you in formatting the search condition.
Click Finish.
In Interactive SQL, you can perform this task with the CREATE PUBLICATION statement.
Connect to the UltraLite database.
Execute a CREATE PUBLICATION statement that includes the tables you want to include in the publication and a WHERE condition.
For example, the following example creates a single-article publication that includes all sales order information for sales rep number 856:
CREATE PUBLICATION pub_orders_samuel_singer ( TABLE SalesOrders WHERE SalesRepresentative = 856 ); |
Discuss this page in DocCommentXchange. Send feedback about this page using email. |
Copyright © 2009, iAnywhere Solutions, Inc. - SQL Anywhere 11.0.1 |