Hi,
Reorg-ing table by one index (e.g. primary key index) will sort table according to this index. Because table can be ordered by only one index all other indexes will be market as "*". You don't need to worry about "*" at other indexes, this is normal!
If you would like to have table ordered by particular index (and using DB2 for Linux/Unix/Windows just like you) you need to specify word "CLUSTER" at index creation.
Sample:
Code:
CREATE INDEX db2admin.index_name ON db2admin.table_name (COL1, COL2) CLUSTER
Hope this helps,
Grofaty