show/hide this revision's text 6 added 29 characters in body

The query:

SELECT tbl1.*
   FROM tbl1 
JOIN tbl2
     ON (tbl1.t1_pk  = tbl2.t2_fk_t1_pk
AND tbl2.t2_strt_dt <= sysdate
AND tbl2.t2_end_dt  >= sysdate)
JOIN tbl3 on (tbl3.t3_pk = tbl2.t2_fk_t3_pk
AND tbl3.t3_lkup_1 = 2577304
AND tbl3.t3_lkup_2 = 1220833)
where tbl2.t2_lkup_1   = 1020000002981587;

Facts:

  • Oracle XE
  • tbl1.t1_pk is a primary key.
  • tbl2.t2_fk_t1_pk is a foreign key on that t1_pk column.
  • tbl2.t2_lkup_1 is indexed.
  • tbl3.t3_pk is a primary key.
  • tbl2.t2_fk_t3_pk is a foreign key on that t3_pk column.

Explain plan on a database with 11,000 rows in tbl1 and 3500 rows in tbl2 shows that it's doing a full table scan on tbl1. Seems to me that it should be faster if it could do a index query on tbl1.

Explain plan on a database with 11,000 rows in tbl1 and 3500 rows in tbl2 shows that it's doing a full table scan on tbl1. Seems to me that it should be faster if it could do a index query on tbl1.

Update: I tried the hint a few of you suggested, and the explain cost got much worse! Now I'm really confused.

Further Update: I finally got access to a copy of the production database, and "explain plan" showed it using indexes and with a much lower cost query. I guess having more data (over 100,000 rows in tbl1 and 50,000 rows in tbl2) were what it took to make it decide that indexes were worth it. Thanks to everybody who helped. I still think Oracle performance tuning is a black art, but I'm glad some of you understand it.

Further update: I've updated the question at the request of my former employer. They don't like their table names showing up in google queries. I should have known better.

show/hide this revision's text 5 Obfuscated table and column names.

The query:

SELECT clnt.tbl1.*
   FROM co_clt clnt
tbl1 
JOIN clt_ctct cnt
     tbl2
     ON (clnt.cc_id  tbl1.t1_pk  = cnt.clc_cc_id
tbl2.t2_fk_t1_pk
AND cnt.clc_strt_dt tbl2.t2_strt_dt <= sysdate
AND cnt.clc_end_dt  tbl2.t2_end_dt  >= sysdate)
JOIN clt_ctct_affl_fltr fltr tbl3 on (fltr.ccaf_id tbl3.t3_pk = cnt.clc_ccaf_id
tbl2.t2_fk_t3_pk
AND fltr.ccaf_ccat_id tbl3.t3_lkup_1 = 2577304
AND fltr.ccaf_ccrt_id tbl3.t3_lkup_2 = 1220833)
where cnt.clc_pers_id   tbl2.t2_lkup_1   = 1020000002981587;

Facts:

  • Oracle XE
  • co_clt.cc_id
  • tbl1.t1_pk is a primary key.
  • cnt.clc_cc_id
  • tbl2.t2_fk_t1_pk is a foreign key on that cc_id t1_pk column.
  • cnt.clc_pers_id
  • tbl2.t2_lkup_1 is indexed.
  • fltr.ccaf_id
  • tbl3.t3_pk is a primary key.
  • cnt.clc_ccaf_id
  • tbl2.t2_fk_t3_pk is a foreign key on that ccaf_id t3_pk column.

Explain plan on a database with 11,000 rows in co_clt tbl1 and 3500 rows in clt_ctct tbl2 shows that it's doing a full table scan on co_clttbl1. Seems to me that it should be faster if it could do a index query on co_clttbl1.

Full explain

Explain plan is hereon a database with 11,000 rows in tbl1 and 3500 rows in tbl2 shows that it's doing a full table scan on tbl1. Seems to me that it should be faster if it could do a index query on tbl1.

Update: I tried the hint a few of you suggested, and the explain cost got much worse! Now I'm really confused.

Further Update: I finally got access to a copy of the production database, and "explain plan" showed it using indexes and with a much lower cost query. I guess having more data (over 100,000 rows in co_clt tbl1 and 50,000 rows in clt_ctcttbl2) were what it took to make it decide that indexes were worth it. Thanks to everybody who helped. I still think Oracle performance tuning is a black art, but I'm glad some of you understand it.

Further update: I've updated the question at the request of my former employer. They don't like their table names showing up in google queries.

show/hide this revision's text 4 added 455 characters in body

The query:

SELECT clnt.*
   FROM co_clt clnt
JOIN clt_ctct cnt
     ON (clnt.cc_id  = cnt.clc_cc_id
AND cnt.clc_strt_dt <= sysdate
AND cnt.clc_end_dt  >= sysdate)
JOIN clt_ctct_affl_fltr fltr on (fltr.ccaf_id = cnt.clc_ccaf_id
AND fltr.ccaf_ccat_id = 2577304
AND fltr.ccaf_ccrt_id = 1220833)
where cnt.clc_pers_id   = 1020000002981587;

Facts:

  • Oracle XE
  • co_clt.cc_id is a primary key.
  • cnt.clc_cc_id is a foreign key on that cc_id column.
  • cnt.clc_pers_id is indexed.
  • fltr.ccaf_id is a primary key.
  • cnt.clc_ccaf_id is a foreign key on that ccaf_id column.

Explain plan on a database with 11,000 rows in co_clt and 3500 rows in clt_ctct shows that it's doing a full table scan on co_clt. Seems to me that it should be faster if it could do a index query on co_clt.

Full explain plan is here.

Update: I tried the hint a few of you suggested, and the explain cost got much worse! Now I'm really confused.

Further Update: I finally got access to a copy of the production database, and "explain plan" showed it using indexes and with a much lower cost query. I guess having more data (over 100,000 rows in co_clt and 50,000 rows in clt_ctct) were what it took to make it decide that indexes were worth it. Thanks to everybody who helped. I still think Oracle performance tuning is a black art, but I'm glad some of you understand it.

show/hide this revision's text 3 edited tags
show/hide this revision's text 2 added 214 characters in body
show/hide this revision's text 1