摘要: --在我们无法修改源代码的时候,我们可以采用sqlprofile来改变执行计划 --新增一张测试表 create table test_emp as select * from scott.emp; --新建索引 create index idx_001 on test_emp(empno); --下面的语句正常是要走全表扫描的 select /*+ no_index(test_emp id... 阅读全文
posted @ 2017-12-05 09:47 xuzhong86 阅读(281) 评论(0) 推荐(0) 编辑