Site search

Categories

Archives

Tags





The GNU/Linux Advanced Administration

Free Linux Manuals !


A Newbie's Getting Started Guide to Linux

-- FREE --
IT Magazine
Subscriptions

Oracle Magazine Oracle Magazine Contains technology strategy articles, sample code, tips, Oracle and partner news, how-to articles for developers and DBAs

WebSite Magazine WebSite Magazine Practical advice, helpful tools and insights for website owners

Dr Dobb's Journal Dr Dobb's Journal enables coders to write the most efficient programs and help in daily programming quandaries

DM Review DM Review is recognized as the premier business intelligence, analytics and data warehousing publication
Various other Free IT magazine subscriptions
NoAdware Free Trial

NoAdware Remove
harmful
adware,
spyware,
trojans,
dialers
and worms!
- Featured ebook -

Database Normalization
by Alf Pedersen

Database Normalization ebook Understand and master how to normalize a database using methods richly documented with graphical ERD and server diagram examples

RSS
XML RSS
What is this?
AddThis Feed Button

Social
Bookmarking


Oracle Database Links Background

A Database Link allows you to access data in a remote database as if it is a local table’s data.

The connection can be made to a database hosted on the same machine or remotely on another server.

When you query data on a different database, you are essentially using a distributed query.
It is also possible to execute distributed transactions through database links like insert, update and delete.

The authentication used in a database link is either the link’s owner or a hard-coded username and password, depending on the way the link was created.

A database link in oracle can be either private (for use only by the link’s owner) or public (accessible to any user with the correct privileges).

Connectivity is established via Sql*Net, using an alias defined in the local database server’s tnsnames.ora

Have a look at the tutorials on this siteĀ  to find out more about oracle database links :

Dblinks category