tags:

views:

30

answers:

2

how to find all indexes available on table in db2

+2  A: 

db2 "select * from syscat.indexes where tabname = 'your table name goes here' and tabschema = 'your schema'"

Ingo
+1  A: 

You can also execute:

DESCRIBE INDEXES FOR TABLE SCHEMA.TABLE SHOW DETAIL
Ian Bjorhovde