Oracle database tips logo
Article categories | Blog and News Page | SQL | SQL*Plus | DBA Scripts | Standby dbs | Database Links | Techno webcasts | Oracle Magazine | Free IT Magazines | Oracle Database Hosting Companies | Site Search |
RSS
XML RSS
What is this?
AddThis Feed Button

Social Bookmarking
- Found on the internet ! -

Oracle workbooks


Download Oracle Books


-- 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 Link Tutorials
Examples to create, use, manage and drop them

Always test any 'Oracle Database Link Tutorials' commands on a test server before implementing them on a production server.

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 below to find out more about oracle database links :

Create oracle database links
Examples of creating database links.

Make use of oracle database links
How to use your fresh database link, syntax for making use of a database link and closing one.

Drop oracle database link steps
Housekeeping for your unused or invalid database links.

Hide oracle database link complexity
Want to spare yourself the db link syntax in daily use ?
Hide it with a view or a synonym.

Limit oracle database links per session
Adapt the maximum allowable number of database links per session in your database.

Manage your oracle database links
How many database links are in existence on your database, how many are in use ?

Troubleshoot oracle database link errors
Read up here to find solutions to common db link setup mistakes and errors.


Recommended reading:

  • Oracle Online Documentation: Administrator's Guide, Creating Database Links
  • Oracle Online Documentation: SQL Reference, Create Datatabase Link syntax



  • Return from 'oracle database link tutorials' back to 'oracle database tips'