DBLINK 建立與小結

2022-08-27 19:30:15 字數 702 閱讀 7466

1、dblink 的作用

當使用者要跨本地資料庫,訪問另外乙個資料庫表中的資料時,本地資料庫中必須建立了遠端資料庫的dblink,通過dblink本地資料庫可以像訪問本地資料庫一樣訪問遠端資料庫表中的資料。

2、建立dblink

1

create

database

link linkhome24

5 using '

(description =67

(address_list =89

(address =

1011

(protocol = tcp)

1213

(host = 172.16.5.75)

1415

(port = 1527)

1617)18

19)2021

(connect_data =

2223

(service_name = test06)

2425)26

27)';

linkhome是dblink 

的名字資料庫使用者名稱和密碼,比如

之類的using 

後面的是

tns配置資訊

3、查詢建立的dblink

select * from all_db_links;

檢視建立的

db_link

DBlink的建立與刪除

建立方式一 create public database link link名稱 connect to 對方資料庫使用者identified by 對方資料庫使用者密碼 using 對方資料庫ip 埠 服務名 建立方式二 create public database link link名稱 conn...

建立刪除DBLINK

三.建立dblink的方法 1.create public database link dblink connect to totalplant identified by totalplant using description address list address protocol tcp ...

如何建立dblink

最近做的專案都是跟資料庫相關的一些東西,有時間就總結一下吧,首先總結一下dblink。1.什麼時候會是用dblink 當使用者要跨本地資料庫,訪問另外乙個資料庫表中的資料時,本地資料庫就要建立遠端資料庫的dblink。通過dblink本地資料庫可以像訪問本地資料庫一樣訪問遠端資料表中的資料。2.如何...