当前位置:网站首页>2022-08-03 oracle执行慢SQL-Q17对比
2022-08-03 oracle执行慢SQL-Q17对比
2022-08-03 22:06:00 【帝尊悟世】
环境:
30.119上安装了oracle 11g最稳定版本11.2.0.4,已经导入10g tpch数据
登录oracle数据库
su - oracle
sqlplus test/oracle // tpch数据都创建在test用户下,已赋予dba权限
10g数据,在oracle中慢sql17执行需要7秒
SQL> select
2 sum(l_extendedprice) / 7.0 as avg_yearly
3 from
4 lineitem,
5 part
6 where
7 p_partkey = l_partkey
8 and p_brand = 'Brand#23'
9 and p_container = 'MED BOX'
10 and l_quantity < (
11 select
12 0.2 * avg(l_quantity)
13 from
14 lineitem
15 where
16 l_partkey = p_partkey
17 );
AVG_YEARLY
----------
3295493.51
Elapsed: 00:00:07.51
以慢sql17为例,查询sql执行计划
explain plan for select
sum(l_extendedprice) / 7.0 as avg_yearly
from
lineitem,
part
where
p_partkey = l_partkey
and p_brand = 'Brand#23'
and p_container = 'MED BOX'
and l_quantity < (
select
0.2 * avg(l_quantity)
from
lineitem
where
l_partkey = p_partkey
);
SQL> select * from table(dbms_xplan.display);
PLAN_TABLE_OUTPUT
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Plan hash value: 3341365018
------------------------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes |TempSpc| Cost (%CPU)| Time |
------------------------------------------------------------------------------------------
| 0 | SELECT STATEMENT | | 1 | 13 | | 309K (1)| 01:01:56 |
| 1 | SORT AGGREGATE | | 1 | 13 | | | |
| 2 | VIEW | VW_WIF_1 | 60082 | 762K| | 309K (1)| 01:01:56 |
| 3 | WINDOW SORT | | 60082 | 2522K| 3328K| 309K (1)| 01:01:56 |
|* 4 | HASH JOIN | | 60082 | 2522K| | 308K (1)| 01:01:48 |
|* 5 | TABLE ACCESS FULL| PART | 2000 | 56000 | | 10473 (1)| 00:02:06 |
| 6 | TABLE ACCESS FULL| LINEITEM | 59M| 858M| | 298K (1)| 00:59:40 |
------------------------------------------------------------------------------------------
Predicate Information (identified by operation id):
---------------------------------------------------
4 - access("P_PARTKEY"="L_PARTKEY")
5 - filter("P_CONTAINER"='MED BOX' AND "P_BRAND"='Brand#23')
边栏推荐
猜你喜欢
随机推荐
DO280管理和监控OpenShift平台--资源限制
UVa 10003 - Cutting Sticks(白书,区间DP)
决策树、GBDT、XGBOOST树的可视化
466. Count The Repetitions
Kubernetes入门到精通-Operator 模式
AI首席架构师13-AICA-智能文档分析技术在行业场景中的应用
测试2年6.5K,每天“911”,我的心酸经历只有我自己知道···
全球观之地理部分
HCIP第十五天
互联网用户账号信息管理规定今起施行:必须严打账号买卖灰产
Shell编程的条件语句
一体化HTAP数据库如此难,为什么他们还要做?
LyScript 实现应用层钩子扫描器
关于GPIO你真的懂了吗?这篇文章都给你整理好了
CAS: 1192802-98-4 _uv cracking of biotin - PEG2 - azide
距LiveVideoStackCon 2022 上海站开幕还有2天!
投资性大于游戏性 NFT游戏到底是不是门好生意
Cross-end development technical reserve record
【历史上的今天】8 月 3 日:微软研究院的创始人诞生;陌陌正式上线;苹果发布 Newton OS
2022的七夕,奉上7个精美的表白代码,同时教大家快速改源码自用