You can use the following query for some basic analysis of index statistics
SELECT
indname,
npages,
card,
firstkeycard as firstk,
first2keycard as f2key,
first3keycard as f3key,
first4keycard as f4key,
fullkeycard as fullkey,
nleaf,
nlevels as nlev,
clusterratio as cr,
clusterfactor as cf,
uniquerule as u,
t.colcount as tbcol,
i.colcount as ixcol
FROM syscat.tables t,
syscat.indexes i
WHERE i.indschema = t.tabschema
AND t.tabname = i.tabname
ORDER by card desc,
indname;