Hi, if you create an index after a table reorg:
REORG TABLE T1;
CREATE INDEX I_T1 ON T1 (C1, C2, C3);
Is it safe to assume that the index is optimal? (as defined in
DB2 Universal Database)
I would assume the answer to be yes, but are there any additional REORG parameters or other commands that would ensure the table (plus all indexes) is in an optimal state at the end of the above sql command sequence?