If an index is no longer required, you can delete it from the database in Sybase Central or in Interactive SQL.
To drop an index (Sybase Central)
Connect to the database as a user with DBA authority, or as the owner of the table on which the index is created.
In the left pane, double-click Indexes.
Right-click the index and choose Delete.
Click Yes.
To drop an index (SQL)
Connect to the database as a user with DBA authority, or as the owner of the table associated with the index.
Execute a DROP INDEX statement.
The following statement removes the EmployeeNames index from the database:
DROP INDEX EmployeeNames; |
See DROP statement.
Send feedback about this page via email or DocCommentXchange | Copyright © 2008, iAnywhere Solutions, Inc. - SQL Anywhere 11.0.0 |