oracle 遠端匯入 匯出

2021-08-30 16:22:34 字數 1808 閱讀 3108

exp命令:

1 exp username/psw@test file=d:test.dmp full=y

2 exp username/psw@test file=d:test.dmp owner=(ly)

3 exp username/psw@test file= d:test.dmp tables=(grid1,grid2)

1其中一是將test(與某一資料庫對應的oracle服務名)資料庫進行整體匯出

2將屬於使用者ly的所有表匯出

3將表grid1,與grid2匯出

imp命令:

1 imp system/psw@test file=d:test.dmp

2 imp system/psw@test full=y file=d:test.dmp ignore=y

3 imp system/psw@test file=d:test.dmp tables=(grid1)ignore=y表示如果被匯入的資料庫中某個表已經存在就忽略不匯入那個表

3表示只匯入grid1這個表

在匯入匯出前要先測試下對應的資料庫是否是通的:tnsping test來測試,同樣test是服務名

所有命令可在cmd下執行

用exp/imp遠端運算元據庫

對oracle資料庫進行遠端操作,假設資料庫在192.168.1.110上,具體方法如下:

一、在客戶端建立和服務端對應的服務名

方法1:

修改tnsnames.ora檔案

加入遠端伺服器的命名:

sql**

test_orcl =

(description =

(address_list =

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

) (connect_data =

(service_name = orcl)

) )

方法2:

在oracle客戶端,開啟net manager。

建立乙個服務命名test_orcl,主機ip為:192.168.1.110,服務名orcl,埠1521

二、測試遠端伺服器是否暢通

進入到cmd後,執行命令:tnsping test_orcl。

三、遠端運算元據庫

匯出:sql**

1:exp username/password@test_orcl file=bak_filepath

2:exp username/password@test_orcl full=y file=bak_filepath

username 使用者名稱,password 密碼,test_orcl 客服端服務名,bak_filepath 備份檔案存放的路徑

匯入:sql**

1:imp username/password@test_orcl file=bak_filepath full=y

2:imp username/password@test_orcl/database_name file=bak_filepath full=y

3:imp username/password@test_orcl file=bak_filepath fromuser=fromadmin touser=toadmin

username 使用者名稱,password 密碼,test_orcl 客服端服務名,bak_filepath 備份檔案存放的路徑

fromadmin 備份資料的使用者名稱,toadmin 還原資料庫的使用者名稱。database_name 還原到那個資料庫上

full=y 將資料庫整體匯出,包括表結構等。

oracle遠端匯出 匯入

建立db link,遠端匯出 匯入。expdp impdp oracle資料庫本地磁碟空間有限,或應用系統的需要,會通過遠端的方式匯出資料庫。在oracle當中,exp遠端導庫的速度太慢,而expdp又無法直接通過遠端導庫。因此需要建立db link遠端連線後,才能使用expdp遠端導庫。詳細步驟如...

oracle 匯入匯出 遠端連線

exp本地匯出與imp本地匯入 exp命令 1 exp username psw test file d test.dmp full y 2 exp username psw test file d test.dmp owner ly 3 exp username psw test file d t...

Oracle 遠端匯出匯入 imp exp

1.首先在 客戶端 建立 伺服器端的對應的服務名 test orcl description address list address protocol tcp host 192.168.1.110 port 1521 connect data service name orcl 方法二.在orac...