Oracle Cross-database Query method __ Database

Source: Internet
Author: User

This paper describes the method of Oracle cross-database query through the creation database link

1. Configure the local database server's Tnsnames.ora file

$vi $ORACLE _home/network/admin/tnsnames.ora

Add the following line, where Dblink is the connection name (customizable), and the host and port are the IP and ports that are listening for the database, Service_Name is the SID of the database.

Mediadblink =
(DESCRIPTION =
(Address_list =
(address = (PROTOCOL = TCP) (HOST = 10.0.0.1) (PORT = 1521))
)
(Connect_data =
(service_name = db)
)
)

2. Log in to the local database, create the DB link

Execute the following query, where MEDIADB is the database link name (customizable) Mediadblink the connection name previously defined in Tnsnames.ora.
Dbuser for username, password for password

--Create Database link
Create DATABASE link mediadb
Connect to Dbuser identified by password
Using ' Mediadblink ';

Note: This does not verify the correctness of the username password

3. Using a linked database

3.1 Querying, deleting, and inserting data is the same as manipulating a local database, except that the table name needs to be written as "table name @database link Name", as

SELECT * from TABLE_NAME@MEDIADB;

3.2 You can also create a synonym for this table

Create synonym AAA for table_name@mediadb;

The effect of the following statement is the same as in 3.1

SELECT * from AAA;

The statement that deletes the synonym is

Drop synonym AAA;

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.