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

2021-08-22 16:52:08 字數 606 閱讀 1234

1.create database link資料庫鏈結名connect to 使用者名稱 identified by 密碼 using 『資料庫連線字串』;

可以像這樣:

create database link orcl2

connect to user identified bypwd

using '(description =

(address_list =

(address = (protocol = tcp)(host = ip)(port = 1521))

)(connect_data =

(service_name = orcl)

))';

資料庫全域性名稱可以用以下命令查出

select * from global_name;

2.select …… from 表名@資料庫鏈結名;

你就可以搜到遠端資料庫的資料了。,

3.使用同義詞簡化:

sql>create synonym stablename for tablename@資料庫鏈結名;

4、刪除資料庫連線

sql>drop public database link 資料庫鏈結名

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

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

資料庫鏈結(DBLINK)

在分布式資料庫應用中,會使用到資料庫鏈結,即dblink,它是用來訪問分布式環 境下其它資料庫例項的,它定義的是乙個資料庫伺服器到另乙個資料庫伺服器的單向入 口,注意 是 單向 這說明只有擁有dblink的那方才能訪問dblink指向的資料庫服 務器。建立dblink 使用 create datab...

資料庫鏈結DB LINK

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