Default Index Creation Strategy for Constraints
When you create a table with unique or primary-key constraints, the database server creates a system-generated, internal index that is unique and ascending for each constraint.
When you drop a primary-key or foreign-key constraint, the corresponding system-generated index is also dropped. However, you can preserve the index by renaming it with the RENAME INDEX statement.
When you create a table with a referential constraint, the database server creates an internal index that is ascending and that allows duplicate values for each column that you specify in the referential constraint.
An internal index occupies the same storage location as its table. For fragmented tables, the fragments of an internal index occupy the same dbspace partitions that you specify for the table fragments (or in some cases, the database dbspace).