Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: server is joining remote tables locally
I would try this to see if you get a quick fix:
select *
from a
,(select * from b_at_site1 b, c_at_site1 c
where b.col3 = c.col4 ) bc
>select *
>from a, b_at_site1 b c_at_site1 c
>where a.col1=b.col2 and
>b.col3 = c.col4
>
That might cause the join in the remote database.
-- http://www.freelists.org/webpage/oracle-lReceived on Thu Mar 10 2005 - 15:22:41 CST