Skip to Main Content

Oracle Database Discussions

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Rule based Optimiser in 10g

KersMar 31 2004 — edited Mar 31 2004
Can anyone tell me if there is still a rule based optimiser in 10g, i have heard that it has been removed? Is this correct?

Comments

423743
A distributed database environment is an environment that has two or more databases. Optionally, these databases must communicate over the network using such things as Oracle Net, but really could be on the same server communicating with IPC.

In the old days, I had data about leased property in one database but some other guy had "family leased housing" in his database, so we had to write some links to merry up the data and product such results as "the total cost of all leased property."

Suppose you have two Oracle databases, each with important data, and now you need to combine the data for some reason, such as reporting or because one of the databases has all of your reference tables and the other just has data tables (yes, some people do that, and it works like the hub-and-spoke system that caused so many airlines to go bankrupt :) ) Anyways, all you have to do is create a database link in database A that points to database B. Now, you can do things like SELECT * FROM MYTABLE@B.

Distributed databases form the basis for advanced topics like Oracle Advanced Replication (multi-master and snapshot) and Oracle Streams. These docs will tell you about init.ora parameters you need to look at, as well as tuning issues to be considered.

-Mark
9i OCP
425103
In addition, I think you need to set distributed_transactions to something greater than zero if you plan to update or insert on the database thru the dblink.
1 - 2
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Apr 28 2004
Added on Mar 31 2004
1 comment
175 views