Dropping an index deletes it from the database.
You can use either Sybase Central or Interactive SQL to perform this task.
In Sybase Central, you can perform this task while working with a selected database.
Connect to the UltraLite database.
In the left pane, double-click Indexes.
Right-click an index and then choose Delete.
Click Yes.
In Interactive SQL, deleting a table is also called dropping it. You can perform this task with the DROP INDEX statement.
Connect to a database.
Execute a DROP INDEX statement.
For example, the following statement removes the EmployeeNames index from the database:
DROP INDEX EmployeeNames; |
Discuss this page in DocCommentXchange. Send feedback about this page using email. |
Copyright © 2009, iAnywhere Solutions, Inc. - SQL Anywhere 11.0.1 |