This can be a silly question but I want to be sure 100%.
Is the PK of a DB2 table a clustered index by default?
|
|
|
From: DB2 docs - Clustering indexes
So no, by default the Primary Key is NOT the clustered index of the table. The first created index, unique or not, is the "implicit" clustering index and DB2 tries to insert the records as nearly as possible in the order of the values of this index. If you later reate another index and identify it as clustering, then DB2 identifies it as the clustering index but does not rearrange the data that is already in the table. This can be done with the REORG utility. |
||||
|
|
From the Publib (this assumes DB2 for z/OS, version 9)
You can see which index is the clustering index for a table (in this example,
And this one for Linux/Unix/Windows (LUW):
|
|||||
|
|
DB2 doesn't create clustered index for a PK by default.
See at: Keys DB2 |
|||||||||||||
|