Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

At the moment this query involves a full tablescan of 2.3m rows even though licenseid is indexed. Is there an index that we can add to the EDCREVOKATIONENTITY to make sure the scan is required? At the moment it takes 3hrs to run the delete that is 1 of 5 we need to perform on tables.

mysql> explain select * 
    ->   from EDCREVOKATIONENTITY
    ->     where licenseid in
    ->       (select id
    ->         from EDCLICENSEENTITY
    ->           where
    ->             policyid in
    ->               (select id
    ->                 from EDCPOLICYENTITY
    ->                   where policychangedate < unix_timestamp('2012-06-01')*1000
    ->               )
    ->       )\G;
*************************** 1. row ***************************
           id: 1
  select_type: PRIMARY
        table: EDCREVOKATIONENTITY
         type: ALL
possible_keys: NULL
          key: NULL
      key_len: NULL
          ref: NULL
         rows: 2347114
        Extra: Using where
*************************** 2. row ***************************
           id: 2
  select_type: DEPENDENT SUBQUERY
        table: EDCLICENSEENTITY
         type: unique_subquery
possible_keys: PRIMARY
          key: PRIMARY
      key_len: 36
          ref: func
         rows: 1
        Extra: Using where
*************************** 3. row ***************************
           id: 3
  select_type: DEPENDENT SUBQUERY
        table: EDCPOLICYENTITY
         type: unique_subquery
possible_keys: PRIMARY,edcpolicyentity_ix_policychangedate
          key: PRIMARY
      key_len: 36
          ref: func
         rows: 1
        Extra: Using where
3 rows in set (0.00 sec)
#

Here's a list of the current indexes:-

ysql> show index from EDCREVOKATIONENTITY \G;
*************************** 1. row ***************************
       Table: EDCREVOKATIONENTITY
  Non_unique: 0
    Key_name: PRIMARY
Seq_in_index: 1
 Column_name: id
   Collation: A
 Cardinality: 2521083
    Sub_part: NULL
      Packed: NULL
        Null: 
  Index_type: BTREE
     Comment: 
*************************** 2. row ***************************
       Table: EDCREVOKATIONENTITY
  Non_unique: 1
    Key_name: RVKATN_SEQNUM_INDX
Seq_in_index: 1
 Column_name: sequencenumber
   Collation: A
 Cardinality: 2521083
    Sub_part: NULL
      Packed: NULL
        Null: 
  Index_type: BTREE
     Comment: 
*************************** 3. row ***************************
       Table: EDCREVOKATIONENTITY
  Non_unique: 1
    Key_name: FKDB7C4F7DLICENSEID
Seq_in_index: 1
 Column_name: licenseid
   Collation: A
 Cardinality: 2521083
    Sub_part: NULL
      Packed: NULL
        Null: YES
  Index_type: BTREE
     Comment: 
*************************** 4. row ***************************
       Table: EDCREVOKATIONENTITY
  Non_unique: 1
    Key_name: licenseid
Seq_in_index: 1
 Column_name: licenseid
   Collation: A
 Cardinality: 2521083
    Sub_part: NULL
      Packed: NULL
        Null: YES
  Index_type: BTREE
     Comment: 
*************************** 5. row ***************************
       Table: EDCREVOKATIONENTITY
  Non_unique: 1
    Key_name: EDCREVOKATIONENTITY$ix$updatedate
Seq_in_index: 1
 Column_name: updatedate
   Collation: A
 Cardinality: 19
    Sub_part: NULL
      Packed: NULL
        Null: YES
  Index_type: BTREE
     Comment: 
5 rows in set (0.47 sec)
share|improve this question
How many rows are you deleting? A full table scan is often the best option for a nontrivial amount of rows. – Andomar Sep 12 '12 at 12:24

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.