Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 10.0.1 » UltraLite - Database Management and Reference » Working with UltraLite Databases » Working with UltraLite publications

Publishing a subset of rows from an UltraLite table Next Page

Dropping a publication for UltraLite


You can drop a publication using either Sybase Central or Interactive SQL.

Sybase Central

In Sybase Central, you can perform this task while working with the connected database.

To drop a publication (Sybase Central)
  1. Connect to the UltraLite database.

  2. Oopen the Publications folder.

  3. Right-click the desired publications and choose Delete from the popup menu.

Interactive SQL

In Interactive SQL, deleting a publication is also called dropping it. You can perform this task with the DROP PUBLICATION statement.

To drop a publication (Interactive SQL)
  1. Connect to the UltraLite database.

  2. Execute a DROP PUBLICATION statement.

    Example    The following statement drops the publication named pub_orders:

    DROP PUBLICATION pub_orders
  3. See also