How can I find all indexes available on a table in DB2

Rumik picture Rumik · May 20, 2010 · Viewed 88.3k times · Source

How to find all indexes available on table in db2?

Answer

Ingo picture Ingo · May 20, 2010
db2 "select * from syscat.indexes where tabname   = 'your table name here' \
                                  and   tabschema = 'your schema name here'"