Re: Cost based optomizer problem. CBO won't merge view

From: Geomancer <pharfromhome_at_hotmail.com>
Date: 28 Jun 2003 11:49:32 -0700
Message-ID: <cf90fb89.0306281049.235124e7_at_posting.google.com>


> select *
> from a_anti_a_view av
> where av.asset_id in (select id from temp_as);

You might try re-writing query as standard join and force a nested loop join:

select /*+ use_nl */

   col_list
from

   a_anti_a_view av,
   temp_as t
where

   av.asset_id =t.temp_as; Received on Sat Jun 28 2003 - 20:49:32 CEST

Original text of this message