我有一个查询,如下所示:
select /*+gather_plan_statistics*/
*
from mi_dimcustomer t
where t.CUSTOMER_NUM = 321937
表中有一个Unique Index
(IDX1_DIMCUSTOMER)
onCustomer_Num
列。我使用了/*+gather_plan_statistics*/
提示并Dbms_xplan.display_cursor
获得了真正的执行计划,这就是我所拥有的:
SQL_ID adj0b6drg6bjd, child number 0
-------------------------------------
select /*+gather_plan_statistics*/* from vmi_dimcustomer t where
t.CUSTOMER_NUM = 321937
Plan hash value: 3784660444
-----------------------------------------------------------------------------------------------------------------------
| Id | Operation | Name | Starts | E-Rows | Cost (%CPU)| A-Rows | A-Time | Buffers |
-----------------------------------------------------------------------------------------------------------------------
| 0 | SELECT STATEMENT | | 1 | | 2 (100)| 1 |00:00:00.01 | 3 |
| 1 | TABLE ACCESS BY INDEX ROWID| MI_DIMCUSTOMER | 1 | 1 | 2 (0)| 1 |00:00:00.01 | 3 |
|* 2 | INDEX UNIQUE SCAN | IDX1_DIMCUSTOMER | 1 | 1 | 1 (0)| 1 |00:00:00.01 | 2 |
-----------------------------------------------------------------------------------------------------------------------
Predicate Information (identified by operation id):
---------------------------------------------------
2 - access("CUSTOMER_NUM"=321937)
我的问题是,Operation-2 , Index unique scan.
据我所知,发生的Index scan
只是扫描/搜索Index Page
,检索所需的 Rowid,然后使用这些 Rowid 访问表中的正确位置(这是 op-1)。我不期望操作-2(它只是扫描索引页)以生成任何行!那么为什么我们在 op-2 的执行计划中看到 [A-rows]=1 呢?这个数字代表什么?
我的猜测是它将等于从 index page 返回的 ROWID 的数量。
提前致谢
您的猜测是正确的,它是从索引返回的 rowid 的数量。这是表访问检查的行数,但不一定是它返回的行数(例如,您有另一个过滤器,只能在读取行的其余部分后应用)。