`

《Pro Oracle SQL》Chapter8--8.8 Performance Tuning

阅读更多

Performance Tuning     性能调优      (page 266)
    Analytic functions are very useful in tuning complex SQL statements. Inter-row referencing, aggregation at multiple levels, and nth-row access are a few of the important features analytic functions provide. For example, a typical query fetching both aggregated and non-aggregated rows must perform a self-join. In a data warehouse environments, due to the sheer size of the tables involved, these self-joins can be cost prohibitive
    对于复杂SQL语句的优化分析函数很有用。行间引用,在多层次聚合,访问第n行都是分析函数所提供的重要特性。例如,典型的同时取聚合和非聚合的查询必须执行自连接。在数据仓库环境,由于涉及的表都非常巨大,这些自连接将是成本过高的
    The efficiency that analytics bring to the table often makes them useful tools in rewriting queries
that do not perform well.
In turn, however, you can sometimes face the need to tune an analytic
function. To that end , there are some useful things to know about analytic functions and execution
plans, analytics and predicates, and strategies for indexing.
    数学分析带给表的效率使得他们成为重写性能不高查询的有用工具。 然而,你有时需要调试分析函数。为了这个目的 ,关于分析函数和执行计划,数学分析和谓词,还有(建立)索引策略,这些有用的事情必须了解。

Execution Plans   执行计划
    Analytic function introduces few new operations in the SQL execution plan. Presence of the keywords
WINDOW SORT indicate that the SQL statement utilizes an analytic function.
In this section, I will review
the mechanics of analytic function execution. 
    分析函数在SQL执行计划中引入了几个新的操作。关键字WINDOW SORT的出现表明SQL语句使用了分析函数。 在本节中,我将回顾分析函数执行的机制。
    Listing 8-21 shows a typical execution plan of a SQL statement. Execution of this plan starts at step 4
and works its way outwards to step 1:
4.   Table SALES_FACT is accessed using Full Table Scan access path. 
3.   Filter predicates on Product, Country, Region, and Year column are applied filtering required
rows.
2.   Analytic functions are applied over the filtered rows from the step 3.
1.   Predicate on Week column applied after the execution of these analytic functions.
    列表8-21展示了一典型的SQL语句的执行计划。该计划的执行开始于步骤4且向外运行到步骤1。
4.  表SALES_FACT使用全表扫描访问路径。
3.  在Product, Country, Region, and Year column 上的过滤器谓词过滤所需的行。
2. 分析函数应用于第三步过滤取得的行。
1. 在Week列的谓词应用在这些分析函数执行之后。

■ NOTE  The Cost Based Optimizer does not assign or calculate a cost for analytic functions (as of 11gR2). The cost of the SQL statement is calculated without considering the cost of analytic functions. 
■ 注意 基于成本的优化器不会对分析函数赋予或者计算成本值(如版本11gR2)。SQL语句的成本计算没有考虑分析函数的成本。

Listing 8-21.  Execution Plan
----------------------------------------------------------------------------
| Id  | Operation                       | Name                        | Rows  | Bytes | Cost (%CPU)|
----------------------------------------------------------------------------
|   0 | SELECT STATEMENT         |                                |     5 |   290 |   581   (3)|
|*  1 |  VIEW                           | MAX_5_WEEKS_VW     |     5 |   290 |   581   (3)|
|   2 |   WINDOW SORT              |                                |     5 |   330 |   581   (3)|
|*  3 |    TABLE ACCESS FULL     | SALES_FACT              |     5 |   330 |   580   (3)|
----------------------------------------------------------------------------
 
Predicate Information (identified by operation id):
---------------------------------------------------
   1 - filter("WEEK"<14)
   3 - filter("PRODUCT"='Xtend Memory' AND "COUNTRY"='Australia' AND
              "REGION"='Australia' AND "YEAR"=2000)


Predicates    谓词

    Predicates must be applied on the tables as early as possible to reduce the result set for better
performance. Rows must be filtered earlier so that analytic functions are applied to relatively fewer rows.
Predicate safety is an important consideration in executing analytic functions as not all predicates can
be applied beforehand.

    谓词必须尽可能早的应用于表中减少结果集和更好的性能。行集必须较早的筛选,这样的话分析函数就作用于较少的行集上。运行分析函数时谓词安全是要重点考虑的,因为不是所有的谓词都能提前应用的。

    In the Listing 8-22, a view called max_5_weeks_vw is defined and a SQL statement is accessing the
view with the predicates on Country, Product, Region, Year, and Week columns. The execution plan
shows that the following filter predicates are applied in step 3:
     在列表8-22中,定义了视图max_5_weeks_vw且一SQL语句通过在Country, Product, Region, Year, 和Week 列上的谓词访问视图。执行计划显示如下筛选谓词应用于第三步:
filter(("PRODUCT"='Xtend Memory' AND "COUNTRY"='Australia'
AND "REGION"='Australia' AND "YEAR"=2000)) 
 
    However, the predicate  "WEEK"<14 is not applied in step 3, and is only applied in step 1, indicating
that the predicate is applied after executing the analytic functions in step 2’s  WINDOW SORT  step. All
supplied predicates except that on the Week column were pushed into the view. Filtering of those
predicates then took place before executing the analytic functions. 
    然而,谓词“WEEK”<14没有应用于第三步,而只应用于第一步,说明该谓词在执行第二步分析函数之后才起作用。除了Week列之外的谓词都推进到视图中了。这些谓词的筛选发生在执行分析函数之前。
    Predicates on partitioning columns are applied before executing analytic functions, as generally
speaking, predicates on partitioning column can be pushed safely into the view. But columns in the
order-by-clause of the analytic function syntax can’t be pushed safely as the inter-row references need
access to other rows in the same partitions, even if those rows are not returned in the final result set.

    在分区列上的谓词在执行分析函数之前应用,一般而言,在分区列上的谓词可被安全的推进入视图。但是在分析函数句法的order-by子句中的谓词不能安全的推进,因为行间引用需要访问相同分区的其他行,即使这些行没有在最终的结果集中返回。

Indexes    索引
    A good strategy for index selection is to match the predicates applied on the table access step. As
discussed in the earlier section, predicates on partitioning columns are pushed into the view and these
predicate are applied before executing the analytic functions. So, it’s probably a better approach to
index the partitioning columns if the SQL statements are using those predicates.

    对于索引选择一个好的策略是匹配应用于表访问步骤的谓词。正如之前讨论的,在分区列的谓词推进入了视图且这些谓词在执行分析函数之前应用。如此,如果SQL语句用到了分区列上的这些谓词,对它们建立索引可能是更佳的方法。
    In the Listing 8-23, a new index is added on the columns Country and Product. Step 4 in the
execution plan shows that index-based access is used. The predicate Information section shows that
predicates on all four partitioning columns were applied at step 4 and step 3 before executing analytic
function. But the predicate on Week column was applied much later in the execution plan at step 1. So,
in this case, adding Week column to the index is not useful as the predicates are not applied until after
the analytic function execution completes.
    列表8-23,对列Country和Product增加索引。在执行计划的第四步显示使用了基于索引的访问。谓词信息段显示,在所有四个分区列上的谓词都应用在执行分析函数的之前的第四步和第三步。但是在Week列上的谓词却在分析函数执行之后的第一步应用。如此,在这种情况下,在Week列上加索引就不是很有用,因为谓词直到分析函数执行完后才应用的。

Listing 8-23.  Predicates and Indices
create index sales_fact_i1 on  sales_fact( country, product);
 
1  select year, week, sale, max_weeks_5 from  max_5_weeks_vw
2    where country in ('Australia')  and product ='Xtend Memory' and
3    region='Australia' and year= 2000 and week <14
4*   order by year, week
/
------------------------------------------------------------------
| Id  | Operation                                      | Name                   | E-Rows |
------------------------------------------------------------------
|   0 | SELECT STATEMENT                       |                            |        |
|*  1|   VIEW                                         | MAX_5_WEEKS_VW  |      5 |
|   2 |     WINDOW SORT                          |                             |      5 |
|*  3 |       TABLE ACCESS BY INDEX ROWID| SALES_FACT           |      5 |
|*  4 |         INDEX RANGE SCAN                | SALES_FACT_I1      |    147 |
------------------------------------------------------------------
 
Predicate Information (identified by operation id):
---------------------------------------------------
 
   1 - filter("WEEK"<14)
   3 - filter(("REGION"='Australia' AND "YEAR"=2000))
   4 - access("COUNTRY"='Australia' AND "PRODUCT"='Xtend Memory') fs

0
0
分享到:
评论

相关推荐

    《Pro Oracle SQL》CHAPTER 9 -- 9.10Performance Tuning with the Model Clause

    《Pro Oracle SQL》一书的第9章,重点关注了使用"Model"子句进行性能调优的方法。在Oracle数据库中,Model子句是一种强大的功能,它允许数据建模和复杂的计算,尤其适用于解决多步骤计算问题,如模拟、预测和序列...

    《Pro Oracle SQL》Chapter10 -- 10.2 Optimizing SQL -10.2.1Testing Execution Plans

    《Pro Oracle SQL》一书的第10章深入探讨了SQL优化,特别是10.2节,重点关注如何测试执行计划,这是SQL性能调优的关键环节。在这个部分,作者旨在帮助读者理解如何有效地评估和改进SQL查询的性能,以提高数据库系统...

    Oracle-sql-Performance-Tuning-30Tips.rar_oracle_tom kyte

    "Oracle SQL Performance Tuning 39Tips" 提供了由Oracle专家Tom Kyte精心总结的30个SQL优化技巧,这些技巧旨在帮助用户提升数据库查询速度,减少资源消耗,提高系统整体性能。 1. **索引优化**:Tom Kyte强调了...

    Oracle SQL Tuning with Oracle SQLTXPLAIN: Oracle Database 12c Edition

    Oracle SQL Tuning with Oracle SQLTXPLAIN: Oracle Database 12c Edition by Stelios Charalambides English | 8 May 2017 | ISBN: 1484224353 | 408 Pages | PDF | 24.39 MB Learn through this practical guide ...

    ORACLE SQL PERFORMANCE TUNING AND OPTIMIZATION

    《Oracle SQL Performance Tuning and Optimization》是一本专为数据库管理员和开发人员设计的指南,旨在帮助读者深入理解如何优化Oracle数据库中的SQL查询性能。这本书详细介绍了Oracle SQL调优的各个方面,包括...

    oracle sql_tuning

    SQL_Tuning是Oracle官方提供的一个专题,旨在帮助管理员和开发人员优化SQL查询,从而提高数据库的效率和响应时间。以下是一些关于"Oracle SQL Tuning"的重要知识点: 1. **SQL执行计划**:SQL执行计划是Oracle解析...

    高清彩版 oracle sql performance tuning and optimization

    标题提到的 "高清彩版 oracle sql performance tuning and optimization" 指的是一本关于Oracle SQL性能调优和优化的专业书籍。从标题中可以了解到,书籍强调的是“基数(Cardinalities)”在Oracle SQL性能调整中的...

    sql-tuning-guide.pdf

    Oracle SQL 优化手册 Oracle SQL 优化手册是 Oracle 官方发布的一份重要的技术文档,旨在帮助开发者和数据库管理员 tối ưu化 Oracle 数据库的性能。该手册涵盖了 Oracle 数据库的各个方面,包括 SQL 语句优化、...

    ORACLE-plan-a-sql-tuning.rar_oracle

    "ORACLE-plan-a-sql-tuning.rar_oracle"这个压缩包显然包含了关于Oracle SQL调优的培训材料,特别是"ORACLE执行计划和SQL调优.ppt",这可能是一个详细的PPT演示文稿,用于解释如何理解执行计划以及如何进行SQL优化。...

    oracle SQL性能优化

    3本经典oracle sql性能优化的的书,值得一看: Oracle.High.Performance.Tuning.for.9i.and.10g.chm Oracle性能优化技术内幕.pdf SQL Performance Tuning -0201791692.chm

    Oracle High-Performance Tuning with STATSPACK 中文版

    Oracle High-Performance Tuning with STATSPACK 是一本专注于优化Oracle数据库性能的专业书籍,中文版的出现使得更多中国用户能够理解并应用这些优化技巧。STATSPACK是Oracle数据库早期的一个性能分析工具,它提供...

    pro oracle sql 2

    《Pro Oracle SQL 2》是面向数据库管理员(DBA)和Oracle开发人员的专业SQL指南,第二版的内容在原基础上进行了更新和扩充,旨在提供更深入、更全面的Oracle SQL使用技巧和最佳实践。这本书深入探讨了Oracle SQL的...

    Azure SQL Data Warehouse- Tuning your DW for optimal performance

    Azure SQL Data Warehouse- Tuning your DW for optimal performance

    oracle sqltuning workshop

    在这个"Oracle SQLTuning Workshop"中,虽然资料可能源自2004年,但它依然包含了许多至今仍具价值的基础知识和实践经验。以下是一些核心知识点的详细说明: 1. **SQL基础**:SQL(结构化查询语言)是用于管理和处理...

    Tosska SQL Tuning Expert Pro for Oracle 4.6.0 Trial-x64

    Tosska SQL Tuning Expert Pro for Oracle 4.6.0 Trial_x64

    oracle sql tuning

    ### Oracle SQL Tuning详解 #### 一、Oracle SQL性能调优概述 在Oracle数据库管理中,SQL性能调优是一项至关重要的任务,它直接影响到应用程序的响应时间和系统的整体性能。SQL性能调优通常涉及对SQL语句进行分析...

    Oracle-Performance-Tuning.rar_oracle

    "Oracle-Performance-Tuning.rar_oracle" 是一个压缩包,包含Oracle官方的性能调优培训资料,对于准备Oracle Certified Associate (OCA)认证的人员来说是非常有价值的资源。 在Oracle数据库性能优化领域,主要涉及...

    Oracle连接工具sqldeveloper-4.0.3.16.84-x64

    Oracle SQL Developer 是一款由Oracle公司推出的免费的数据库管理工具,主要面向开发人员和数据库管理员,提供了一个集成的工作环境来管理Oracle数据库。SQL Developer 4.0.3.16.84-x64 版本是针对64位操作系统的...

    Oracle Performance Tuning and Optimization

    《Oracle Performance Tuning and Optimization》是一本专注于提升Oracle数据库性能的专业书籍,由Macmillan Computer Publishing出版。在Oracle数据库管理中,性能优化是一项至关重要的任务,它涉及到如何最大化...

    SQL Tuning - File IO Performance

    本文将深入探讨“SQL Tuning - File IO Performance”这一主题,特别是从给定的文件信息中提取出的重要知识点进行详细阐述。这些知识点涵盖了SQL区域(SQL Area)与共享池(Shared Pool)的关系、图书馆缓存...

Global site tag (gtag.js) - Google Analytics