ASA SQL User's Guide
Working with Database Objects
Working with indexes
If an index is no longer required, you can remove it from the database in Sybase Central or in Interactive SQL.
To drop an index (Sybase Central)
Connect to a database with DBA authority or as the owner of the table on which the index is created.
In the left pane, open the Indexes folder.
Right-click the desired index and choose Delete from the popup menu.
To drop an index (SQL)
Connect to a database with DBA authority or as the owner of the table associated with the index.
Execute a DROP INDEX statement.
The following statement removes the index from the database:
DROP INDEX EmpNames
For more information, see DROP statement.