Previous Topic: Changing the Area of a TableNext Topic: Dropping and Recreating a Table


Dropping the Default Index Associated with a Table

ALTER TABLE Statement

To drop the default index associated with a table, use the SQL DDL ALTER TABLE statement with the DROP DEFAULT INDEX option.

Considerations

Note: For more information about when you would choose to drop the default index, see the CA IDMS Database Design Guide.

Example

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

alter table emp.employee
   drop default index;