Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Database link performance
Don't worry about the faster database. The slowest database around is like the spped of light compared to the network traffic. Plan the join to minimize the network traffic.
By the way, don't just use the join criteria -- filter, filter, filter to limit network trafic. I have seen this turn 20 minute joins into sub-second.
Ross Mohan wrote:
Mostly you want to avoid doing JOINs over the link. You can force a join toReceived on Mon Oct 26 1998 - 20:33:23 CST
occur
on one db or the other by creating appropriate views there. That way, JOIN
rows are
not shuttled across the network, just the result set.Optimally, you do the join on the faster database.
73353.603@compuserve.com <73353.603@compuserve.com> wrote in message
<712rp1$37t$1@nnrp1.dejanews.com>...
>Hello -
>
> I have a need to access data in a table that resides in a one database
>while at the same time accessing data in my primary database. I have it
set
>up right now as a view across a db link, which functions okay, but does not
![]() |
![]() |