Oracle資料幫浦遠端匯入資料

2022-07-13 16:00:09 字數 970 閱讀 2749

檢視現存映象目錄

select * from dba_directories;

建立映象目錄

create or replace directory my_dir as 'local_dir' ;

把映象目錄的許可權賦予所需使用者

grant read,write on directory my_dir to oracle_user_name;

建立dblink

create public database link link_80

connect to remote_oracle_user_name identified by password

using '(description =

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

(connect_data =

(server = dedicated)

(service_name = remote_oracle_instancename)

檢查是否建立成功

select * from dba_db_links;

導資料表模式匯入:

impdp local_oracle_user_name/password tables=remote_table_name1,remote_table_name2,remote_table_namen remap_schema=remote_oracle_user_name:local_oracle_user_name directory=my_dir network_link=remote_database_link

使用者模式匯入:

impdp \'\/ as sysdba \' directory=data_pump_dir1 network_link=link_160 schemas='test3' remap_tablespace=test3:test

oracle 資料幫浦 匯入資料

oracle 資料幫浦 匯入資料 一 建立匯入檔案目錄 查詢目錄 select from dba directories 查詢資料庫使用者表 select from dba users 查詢資料庫表空間 select from dba tablespaces 查詢資料庫資料檔案資訊表 select ...

Oracle資料幫浦匯入

利用管理員使用者登入,如果沒有使用者的話可以新建使用者 create user test identified by 123456 新建使用者 grant connect,resource,dba to test 給使用者授權 新建目錄 create directory data dir as e ...

oracle 資料幫浦匯入與資料幫浦匯出

資料幫浦匯入 指令 impdp 一 資料庫所有物件的匯入 impdp system tiger dumpfile pump dir mydatabase dat filesize 100m nologfile y job name zhang full y estimate only 二 使用者資料...