天天看点

GBase8s数据库索引优化方法

方法:

select t.tabname,i.idxname, i.levels

from sysindexes i,systables t

where i.tabid = t.tabid

and i.levels>=4

order by 3 desc

运行情况:

tabname idxname levels

orders_sum 117_29 5

orders 112_16 4

cust_calls 111_19 4

customer 110_13 4

cust_calls 111_20 4

cust_calls 111_15 4

健康状况评估:

如果哪个表的索引超过了 4 层,您可能就需要考虑删除和重新构建该索引,从而合并其层,以获取更好的性能。