日期:2014-05-16  浏览次数:20514 次

使用函数索引忧化查询

做报表是遇到的一个问题:


表A(id, part_number ) 10万条左右数据,
表B(part_number) 3万条左右,


查询的sql 语句如下:?
? select a.id, b.part_number?
? from a, b?
? where b.part_number = rtrim(a.part_number)


结果等了20多分钟还在跑, 查看执行计划 A表 full access ,
于是上网搜索一翻 ,part_number上建立函数索引。


create index a_index_1 on? A (rtrim(part_number))? tablespace index_space ;
analyze index? a_index_1?? compute statistics? ;
anylasys table a? compute statistics ;


在查看 该 sql 的 执行计划, full access 变成 index scan ;
结果顺利在 2s 内跑出。 [img]/images/smiles/icon_biggrin.gif" alt="[/img] (花了2个钟才搞定)?





?