show/hide this revision's text 3 obfuscated table and column names.

Apparently this query gives the same plan:

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

What happens if you rewrite this query to:

SELECT clnt.tbl1.*    
FROM  co_clt clnt 
tbl1 
,     clt_ctct cnt  
tbl2
,     clt_ctct_affl_fltr fltr  
tbl3  
where cnt.clc_pers_id   tbl2.t2_lkup_1   = 1020000002981587 
AND   clnt.cc_id  tbl1.t1_pk  = cnt.clc_cc_id 
tbl2.t2_fk_t1_pk 
AND   fltr.ccaf_id tbl3.t3_pk = cnt.clc_ccaf_id 
tbl2.t2_fk_t3_pk 
AND   cnt.clc_strt_dt tbl2.t2_strt_dt <= sysdate 
AND   cnt.clc_end_dt  tbl2.t2_end_dt  >= sysdate 
AND   fltr.ccaf_ccat_id tbl3.t3_lkup_1 = 2577304 
AND   fltr.ccaf_ccrt_id tbl3.t3_lkup_2 = 1220833;
show/hide this revision's text 2 Rewritten query

Try rewriting your

Apparently this query togives the same plan:

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

I think that will give the result

What happens if you needrewrite this query to:

SELECT clnt.*    
FROM  co_clt clnt 
,     but much fasterclt_ctct cnt  
,     clt_ctct_affl_fltr fltr  
where cnt.clc_pers_id   = 1020000002981587 
AND   clnt.cc_id  = cnt.clc_cc_id 
AND   fltr.ccaf_id = cnt.clc_ccaf_id 
AND   cnt.clc_strt_dt <= sysdate 
AND   cnt.clc_end_dt  >= sysdate 
AND   fltr.ccaf_ccat_id = 2577304 
AND   fltr.ccaf_ccrt_id = 1220833;
show/hide this revision's text 1

Try rewriting your query to:

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

I think that will give the result you need, but much faster