The simplest publication you can make consists of a single article, which consists of all rows and columns of a table.
You can use either Sybase Central or Interactive SQL to perform this task.
In Sybase Central, you can perform this task while working with the connected database.
Connect to the UltraLite database.
Open the Publications folder.
Create the publication.
Choose File > New > Publication. The Create Publication wizard appears.
Enter a name for the new publication, and click Next.
On the Tables tab, select a table from the list of Available Tables. Click Add. The table appears in the list of Selected Tables on the right.
Optionally, you may add additional tables. The order of the tables is not important.
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 specifies the name of the new publication and the table you want to publish.
Example The following statement creates a publication that publishes the whole customer table:
CREATE PUBLICATION pub_customer ( TABLE customer )