Why isn't index used for this query?

后端 未结 4 2075
太阳男子
太阳男子 2021-02-05 18:05

I had a query where an index was not used when I thought it could be, so I reproduced it out of curiosity:

Create a test_table with 1.000.000 rows (10 disti

相关标签:
4条回答
  • 2021-02-05 18:45

    I ran Peter's original stuff and reproduced his results. I then applied dcp's suggestion...

    SQL> alter table test_table modify col not null;
    
    Table altered.
    
    SQL> EXEC dbms_stats.gather_table_stats( user, 'TEST_TABLE' , cascade=>true)
    
    PL/SQL procedure successfully completed.
    
    SQL> EXPLAIN PLAN FOR
      2    SELECT col, COUNT(*)
      3    FROM test_table
      4    GROUP BY col;
    
    Explained.
    
    SQL> select * from table(dbms_xplan.display)
      2  /
    
    PLAN_TABLE_OUTPUT
    ------------------------------------------------------------------------------------
    Plan hash value: 2099921975
    
    ------------------------------------------------------------------------------------
    | Id  | Operation             | Name       | Rows  | Bytes | Cost (%CPU)| Time     |
    ------------------------------------------------------------------------------------
    |   0 | SELECT STATEMENT      |            |    10 |    30 |   574   (9)| 00:00:07 |
    |   1 |  HASH GROUP BY        |            |    10 |    30 |   574   (9)| 00:00:07 |
    |   2 |   INDEX FAST FULL SCAN| TEST_INDEX |  1000K|  2929K|   532   (2)| 00:00:07 |
    ------------------------------------------------------------------------------------
    
    9 rows selected.
    
    SQL>
    

    The reason this matters, is because NULL values are not included in a normal B-TREE index, but the GROUP BY has to include NULL as a grouping "value" in your query. By telling the optimizer that there are no NULLs in col it is free to use the much more efficient index (I was getting an elapsed time of almost 3.55 seconds with the FTS). This is a classic example of how metadata can influence the optimizer.

    Incidentally, this is obviously a 10g or 11g database, because it uses the HASH GROUP BY algorithm, instead of the older SORT (GROUP BY) algorithm.

    0 讨论(0)
  • 2021-02-05 18:45

    UPDATE: Try making the col column NOT NULL. That is the reason it's not using the index. When it's not null, here's the plan.

    SELECT STATEMENT, GOAL = ALL_ROWS           69  10  30
                        HASH GROUP BY           69  10  30
     INDEX FAST FULL SCAN   SANDBOX TEST_INDEX  56  98072   294216
    

    If the optimizer determines that it's more efficient NOT to use the index (maybe due to rewriting the query), then it won't. Optimizer hints are just that, namely, hints to tell Oracle an index you'd like it to use. You can think of them as suggestions. But if the optimizer determines that it's better not to use the index (again, as result of query rewrite for example), then it's not going to.

    Refer to this link: http://download.oracle.com/docs/cd/B19306_01/server.102/b14211/hintsref.htm "Specifying one of these hints causes the optimizer to choose the specified access path only if the access path is available based on the existence of an index or cluster and on the syntactic constructs of the SQL statement. If a hint specifies an unavailable access path, then the optimizer ignores it."

    Since you are running a count(*) operation, the optimizer has determined that it's more efficient to just scan the whole table and hash instead of using your index.

    Here's another handy link on hints: http://www.dba-oracle.com/t_hint_ignored.htm

    0 讨论(0)
  • 2021-02-05 18:53

    you forgot this really important information: COL is not null

    If the column is NULLABLE, the index can not be used because there might be unindexed rows.

    SQL> ALTER TABLE test_table MODIFY (col NOT NULL);
    
    Table altered
    SQL> EXPLAIN PLAN FOR
      2  SELECT col, COUNT(*) FROM test_table GROUP BY col;
    
    Explained
    SQL> SELECT * FROM table(dbms_xplan.display);
    
    PLAN_TABLE_OUTPUT
    --------------------------------------------------------------------------------
    Plan hash value: 1077170955
    --------------------------------------------------------------------------------
    | Id  | Operation            | Name       | Rows  | Bytes | Cost (%CPU)| Time
    --------------------------------------------------------------------------------
    |   0 | SELECT STATEMENT     |            |    10 |    30 |  1954   (1)| 00:00:2
    |   1 |  SORT GROUP BY NOSORT|            |    10 |    30 |  1954   (1)| 00:00:2
    |   2 |   INDEX FULL SCAN    | TEST_INDEX |   976K|  2861K|  1954   (1)| 00:00:2
    --------------------------------------------------------------------------------
    
    0 讨论(0)
  • 2021-02-05 18:53

    bitmap index will do as well

    Execution Plan
    ----------------------------------------------------------
    Plan hash value: 2200191467
    
    ---------------------------------------------------------------------------------
    | Id  | Operation          | Name       | Rows  | Bytes | Cost (%CPU)| Time     |
    ---------------------------------------------------------------------------------
    |   0 | SELECT STATEMENT   |            |    10 |    30 | 15983   (2)| 00:03:12 |
    |   1 |  HASH GROUP BY     |            |    10 |    30 | 15983   (2)| 00:03:12 |
    |   2 |   TABLE ACCESS FULL| TEST_TABLE |  1013K|  2968K| 15825   (1)| 00:03:10 |
    ---------------------------------------------------------------------------------
    
    SQL> create bitmap index test_index on test_table(col);
    
    Index created.
    
    SQL> EXEC dbms_stats.gather_table_stats( 'MY_SCHEMA', 'TEST_TABLE' );
    
    PL/SQL procedure successfully completed.
    
    SQL> SELECT col, COUNT(*)
      2    FROM test_table
      3    GROUP BY col
      4  /
    
    Execution Plan
    ----------------------------------------------------------
    Plan hash value: 238193838
    
    ---------------------------------------------------------------------------------------
    | Id  | Operation                | Name       | Rows  | Bytes | Cost (%CPU)| Time     |
    ---------------------------------------------------------------------------------------
    |   0 | SELECT STATEMENT         |            |    10 |    30 |   286   (0)| 00:00:04 |
    |   1 |  SORT GROUP BY NOSORT    |            |    10 |    30 |   286   (0)| 00:00:04 |
    |   2 |   BITMAP CONVERSION COUNT|            |  1010K|  2961K|   286   (0)| 00:00:04 |
    |   3 |    BITMAP INDEX FULL SCAN| TEST_INDEX |       |       |            |          |
    ---------------------------------------------------------------------------------------
    
    
    0 讨论(0)
提交回复
热议问题