注册
DM 倒序排序优化的方法
专栏/金的探索记录/ 文章详情 /

DM 倒序排序优化的方法

2021/01/20 2177 1 0
摘要 DM 倒序排序优化的方法

创建测试数据

create table table_test(a int,b varchar2(100)); declare begin for i in 1..100000 loop insert into table_test values(i,to_char(sysdate)); end loop; end; /

可以看到下列 SQL 语句的计划是有额外排序开销的

explain select * from table_test order by b desc limit 3000,10; 1 #NSET2: [11, 10, 60] 2 #PRJT2: [11, 10, 60];exp_num(3), is_atom(FALSE) 3 #SORT3: [11, 10,60]; key_num(1), is_distinct(FALSE), top_flag(1) 4 #CSCN2:[11, 100000, 60]; INDEX33558148(TABLE_TEST)

此时如果在 B 列上创建倒序索引,可以消除排序

create index "INDEX_1" on "TABLE_TEST"("B" DESC);

但如果有其他查询条件,依然无法消除倒序排序

explain select * from table_test where a like '%888%' order by b desc limit 3000,10 ; 1 #NSET2: [12, 10, 60] 2 #PRJT2: [12, 10, 60];exp_num(3), is_atom(FALSE) 3 #SORT3: [12, 10,60]; key_num(1), is_distinct(FALSE), top_flag(1) 4 #SLCT2:[12, 5000, 60]; exp_cast(TABLE_TEST.A) LIKE %%888%% 5 #CSCN2: [12, 100000, 60]; INDEX33558148(TABLE_TEST)

使用 top_order_opt_flag 参数,但只支持 TOP N

explain select /*+TOP_ORDER_OPT_FLAG(1)*/ top 10 * from table_test where a like '%888%' order by b desc ; 1 #NSET2: [1, 10, 60] 2 #PRJT2: [1, 10, 60];exp_num(3), is_atom(FALSE) 3 #TOPN2: [1, 10,60]; top_num(10) 4 #SLCT2: [1,100, 60]; exp_cast(TABLE_TEST.A) LIKE %%888%% 5 #BLKUP2: [1, 100, 60]; INDEX_1(TABLE_TEST) 6 #SSCN: [1, 100, 60]; INDEX_1(TABLE_TEST)
评论
后发表回复

作者

文章

阅读量

获赞

扫一扫
联系客服