Previous Topic: Defining a Referential ConstraintNext Topic: Creating a View


Dropping a Default Index

You add or drop a default index by issuing an ALTER TABLE statement on the table whose default index you want to drop.

Things You Can Specify

Considerations

It may not always be appropriate to drop a default index.

Note: See the Database Design Guide document for complete information about retaining or dropping default indexes, and see the SQL Reference Guide for complete information on ALTER TABLE.

Example

In the following example, the default index is dropped from the EMPLOYEE table .

alter table prod.employee
      drop default index;