Drop tables

 To drop a table (Sybase Central)
  1. Use the SQL Anywhere 12 plug-in to connect to the database as a user with DBA authority or as the owner of the table.

  2. If you are dropping a table on which materialized views depend, disable each materialized view:

    1. In the left pane, double-click Views.

    2. Right-click the materialized view and choose Disable.

  3. Double-click Tables.

  4. Right-click the table and choose Delete.

  5. Click Yes.

 To drop a table (SQL)
  1. Connect to the database as a user with DBA authority, or as the owner of the table.

  2. If you are dropping a table on which materialized views depend, disable each materialized view using the ALTER MATERIALIZED VIEW ... DISABLE statement.

  3. Execute a DROP TABLE statement.

 Example