Tip

Improved performance with database links

If your database is distributed across a few servers, and you need to access the database across these servers, one way to improve performance is through the use of database links.

Here is a PL/SQL program that inserts records into a number of tables on one server from multiple different servers. Without using database links, this took hours to run the job -- now it only takes less than 5 minutes!

insert into table_a 
select * from remote_site1_table_a@db_link_site1.world; 

insert into table_b 
select * from remote_site1_table_b@db_link_site1.world; 

insert into table_a 
select * from remote_site2_table_a@db_link_site2.world; 

insert into table_b 
select * from remote_site2_table_b@db_link_site2.world; 

For More Information

  • What do you think about this tip? E-mail the Edtior at

    Requires Free Membership to View


This was first published in October 2001

Join the conversationComment

Share
Comments

    Results

    Contribute to the conversation

    All fields are required. Comments will appear at the bottom of the article.

    Disclaimer: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.