Oracle cross-Library query replicates table data

Source: Internet
Author: User

At present most of the database has the need of distributed query. The following is a simple introduction to configuring cross-Library access in Oracle.

For example, there are 2 database servers and 2 databases are installed. Database Server A and B. Now implement the database that accesses B in the a library.

The first step is to configure a server-side Tnsnames.ora file (tnsnames.ora Network configuration file), which is stored in the following location:

$ORACLE _home/network/admin/tnsnames.ora

You need to add a configuration entry to the B library in this file, in the following format

ZBCDB3 =
(DESCRIPTION =
(Address_list =
(ADDRESS = (PROTOCOL = TCP) (HOST = 10.1.50.6) (PORT = 1523))
)
(Connect_data =
(service_name = zbcdb3)
)
)

If another client in the a library accesses the database of B, the corresponding files of the client should also be modified.

The second step is to establish a dblink of a data for B in a library of a server. The syntax is as follows:

Create DATABASE link dcmdb connect to dcmdb identified by dcmoptr Using ' zbcdb3 ' ;

Distributed queries can then be implemented:

SELECT * from [email protected] where 1=1;

Method Two:

First create a database link:
CREATE Public Database link Data link name CONNECT to login user name identified by password USING ' (DESCRIPTION =
(Address_list =
(address = (PROTOCOL = TCP) (HOST = IP address of the other Oracle server) (port = port number))
)
(Connect_data =
(service_name = Other Oracle Server service name)
)
) '
Where the data link name is the service name added to the local Oracle Database Console (Oracle Enterprise Manager Console) tree node
The table tablename statement to query the offset database is as follows:
SELECT field name from [email protected] data link name;

To copy table data:

Insert into table name (field name) (SELECT field name from [email protected] data link name);

Related Article

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.