oracle中dlink使用,create dlink(oracle)

在想要使用dlink的数据库上执行,下面为目标库的一些配置信息

create database link d_erp (dlink名称)

connect to userName(目标用户名) identified by password(目标库密码) using '

(DESCRIPTION =

(ADDRESS_LIST =

(ADDRESS =

(PROTOCOL = TCP)

(HOST = 192.168.1.100) --目标库地址

(PORT = 1521)) )

(CONNECT_DATA =

(SERVICE_NAME = orcl) -- orcl 为目标库sid

) )';

http://docs.oracle.com/cd/B19306_01/server.102/b14200/statements_5005.htm

local to the hr schema on the local database:

CREATE DATABASE LINK local

CONNECT TO hr IDENTIFIED BY hr

USING 'local';

After this database link is created, hr can query tables in the schema hr on the local database in this manner:

SELECT * FROM employees@local;

User hr can also use DML statements to modify data on the local database:

INSERT INTO employees@local

(employee_id, last_name, email, hire_date, job_id)

VALUES (999, 'Claus', 'sclaus@oracle.com', SYSDATE, 'SH_CLERK');

UPDATE jobs@local SET min_salary = 3000

WHERE job_id = 'SH_CLERK';

DELETE FROM employees@local

WHERE employee_id = 999;

Using this fixed database link, user hr on the remote database can also access tables owned by other users on the same database. This statement assumes that user hr has SELECT privileges on the oe.customers table. The statement connects to the user hr on the local database and then queries the oe.customers table:

SELECT * FROM oe.customers@local;

Defining a CURRENT_USER Database Link: Example The following statement defines a current-user database link to the remote database, using the entire service name as the link name:

CREATE DATABASE LINK remote.us.oracle.com

CONNECT TO CURRENT_USER

USING 'remote';

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值