資料庫鏈結(DBLINK)

2021-04-13 12:27:22 字數 525 閱讀 4454

在分布式資料庫應用中,會使用到資料庫鏈結,即dblink,它是用來訪問分布式環

境下其它資料庫例項的,它定義的是乙個資料庫伺服器到另乙個資料庫伺服器的單向入

口,注意:是「單向」,這說明只有擁有dblink的那方才能訪問dblink指向的資料庫服

務器。建立dblink:使用 create database link 語句來建立,

create database link dblink_221.us.oracle.com --dblink名稱

connect to pimc --資料庫例項名

using 'to221';  --鏈結使用的使用者

使用:select * from pimc.bm_dw/*tablename*/@dblink_221.us.oracle.com/*dblinkname*/

表名和dblink中間用 @ 分隔

其它:oracle允許使用者建立 私有(private)、公共(public)、全域性(global)的資料

伺服器上分別建立public的資料庫鏈結。 

資料庫鏈結DB LINK

通過資料庫鏈結,可以訪問另外乙個資料庫中的表。select from table name db link create database link db link name using net service name 其中net service name是通過在tnsname.ora中配置的網路...

建立資料庫鏈結(dblink)步驟

1.create database link資料庫鏈結名connect to 使用者名稱 identified by 密碼 using 資料庫連線字串 可以像這樣 create database link orcl2 connect to user identified bypwd using de...

建立資料庫鏈結(dblink)步驟

1.create database link資料庫鏈結名connect to 使用者名稱 identified by 密碼 using 資料庫連線字串 可以像這樣 create database link orcl2 connect to user identified bypwd using de...