Site search

Categories

Archives

Tags

awr report delete syntax demobld demobld.sql determine oracle db size du find large file ftp script function syntax insert syntax kill oracle process linux du listener listener.log nfs mount instructions oracle constraint oracle database oracle database hosting oracle delete oracle demo build oracle demo setup oracle forein key constraint oracle ftp oracle functions oracle insert oracle process Oracle Scripts oracle select oracle subquery oracle update select syntax solaris sql background sql delete sql functions sql info sql insert sqlplus demo setup sql select sql update subquery syntax Technology Webcasts update syntax vnc tutorial vsftp
RSS
XML RSS
What is this?
AddThis Feed Button

Social
Bookmarking




-- 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



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