메뉴 건너뛰기

Korea Oracle User Group

Guru's Articles

Explain the Explain Plan: Access Methods

명품관 2021.02.10 19:30 조회 수 : 957

원본 : https://sqlmaria.com/2021/01/12/explain-the-explain-plan-access-methods

 

 

Explain the Explain Plan: Access Methods

At the end of last year, I began a blog series on reading and interpreting Oracle execution plans. In this week’s post, I will tackle the aspect of execution plans that I get the most questions about, Access Methods.

What are Oracle Access Paths or Methods?

Access Methods or Access Paths are the techniques used by Oracle to access the data needed to answer a query. Access Methods can be divided into two categories; data accessed via a table scan or index access. You can find the individual Access Methods chosen by the Optimizer in the Operations column of an Execution table.

How Many Access Paths are available to the Optimizer?

Oracle supports nine different Access Methods today, as shown in the image below.

When will the Optimizer choose each of these methods, and what can I do to influence that decision?

To clearly explain how each of the Access Methods works and when it will be chosen, I’ve created a short video.

What if I don’t get the Access Method I want?

If the Access Method you see in an execution plan is not what you expect, check the cardinality estimates for that object are correct, and the join order allows the access method you desire. Remember, Optimizer transformations (the rewriting of your query to open up additional access methods) can also greatly impact the Access Method.

번호 제목 글쓴이 날짜 조회 수
공지 Guru's Article 게시판 용도 ecrossoug 2015.11.18 605
23 Different MOS Notes for xTTS PERL scripts – Use V4 scripts 명품관 2019.01.29 496
22 Brief about Workload Management in Oracle RAC file ecrossoug 2015.11.18 512
21 11.1.0.6 부터 지원하는 Oracle Online Patching New Feature 명품관 2016.04.22 522
20 New Features in Oracle Database 19c 명품관 2019.02.02 543
19 Explain the Explain Plan: Cardinality Estimates 명품관 2021.02.09 617
18 Explain the Explain Plan: Join Methods 명품관 2021.02.10 739
17 New Features in Oracle Multitenant 19c 명품관 2019.02.07 742
16 Top 5 SQL Monitor Features file 명품관 2015.12.01 779
15 Parameter Recommendations for Oracle Database 12c - Part I 명품관 2016.03.07 838
14 New Features of Performance Tuning in Oracle Database 19c 명품관 2019.02.08 918
13 New Features of RAC & ASM in Oracle 19c 명품관 2019.02.08 950
» Explain the Explain Plan: Access Methods 명품관 2021.02.10 957
11 Patch conflicts 명품관 2019.02.07 969
10 How to Recover Data (Without a Backup!) 명품관 2016.05.11 1355
9 DDL Logging - 12c (조나단 루이스) 명품관 2016.04.26 1497
8 New initialization parameters, data dictionary views & dynamic performance views in Oracle Database 19c 명품관 2019.02.08 1912
7 How to change the database name in 12c 명품관 2016.05.31 1971
6 New Features of Data Guard in Oracle Database 19c 명품관 2019.02.08 2003
5 Oracle 12c SQL – Using JSON 명품관 2015.12.29 2579
위로