1.檢視dblink
select owner,object_name from dba_objects where object_type='database link';或者
select * from dba_db_links;
2.建立dblink
前提:建立dblink的使用者有對應的資料庫許可權
create public database link 或者create database link
可以使用
grantcreate
public
database link,create
database link to myaccount;
來授權.
create public database link dblinkname connect to usernameidentified by password
using '(description =
(address_list =
(address = (protocol = tcp)(host = database_ip)(port = 1521))
)(connect_data =
(service_name =servicename)
))';
如果在create之後不加public,則建立的dblink就不是公共的,就只有建立者可以使用了.
補充:如何確定資料庫的servicename:
1.在sqlplus中使用
show parameter[s] service_names;
注意parameter和parameters都可以
2.使用
select name,valuefrom v$parameter
where name='service_names'
3.使用db link
例如,在本機資料庫上建立了乙個scott_rmthost的publicdblink(使用遠端主機的scott使用者連線),則用sqlplus連線到本機資料庫,執行select * fromscott.emp@scott_rmthot即可以將遠端資料庫上的scott使用者下的emp表中的資料獲取到.
也可以在本地建乙個同義詞來指向scott.emp@scott_rmthost,這樣取值就方便多了.
4.刪除
注意:使用者有createpublic database link 或者create database link 許可權.
droppublic
database link dblinkname;
oracle dblink建立過程
兩台不同的資料庫伺服器,從一台資料庫伺服器的乙個使用者讀取另一台資料庫伺服器下的某個使用者的資料,這個時候可以使用dblink。其實dblink和資料庫中的view差不多,建dblink的時候需要知道待讀取資料庫的ip位址,ssid以及資料庫使用者名稱和密碼。建立可以採用兩種方式 1 已經配置本地服...
oracle dblink 資料同步
物理上存放於網路的多個oracle資料庫,邏輯上可以看成乙個單個的大資料庫。使用者可以通過網路對異地資料庫中的資料同時進行訪問,而伺服器之間的協同處理對於工作站使用者及應用程式而言是完全透明的,開發人員無需關心網路的鏈結細節 無需關心資料在網路接點中的具體分布情況 也無需關心伺服器之間的協調工作過程...
建立oracle dblink 過程
建立dblink分為兩個步驟 1.建立本地服務名 2.create database link create database link test.us.oracle.com connect to user identified by pwd using description address li...