Oracle11g Performance笔记1

1. 跳跃式索引(Skip Scan Index) 当表有一个复合索引,而在查询中有除了索引中第一列的其余列做为条件,而且优化器模式为CBO,这时候查询计划就有可能使用到SS。此外,还能够经过使用提示index_ss(CBO下)来强制使用SS。 select /*+index_ss(test1 test_idx1)*/* from test1 where column_b ='sdfee';
相关文章
相关标签/搜索