--建立遠端資料連線
create database link db_mzdb11 connect to ytmztwo identified by ytmztwo909 using 'mzdb11';
--建立本地目錄
create directory db_mz as 'c:';
--授權使用者讀寫
grant read,write on directory db_mz to ytmztwo,ytmz;
--授權使用者可以建立dblink
grant create database link to ytmztwo,ytmz;
grant resource to ytmztwo;
--匯出命令
expdp ytmztwo/ytmz2.2 schemas=ytmztwo dumpfile=ytmztwo.dmp directory=db_mz network_link=db_mzdb11 logfile=log.log exclude=table:\" in \(\'pub_attachment\',\'pub_signseal\'\)\"
--在配置檔案中新增內容
orcl_rxxc =
(description =
(address = (protocol = tcp)(host = 61.139.100.204)(port = 1522))
(connect_data =
(server = dedicated)
(service_name = oracle)))
--直接匯入資料命令
impdp ytmztwo/ytmz2.2 directory=db_mz network_link=db_mzdb11 schemas=ytmztwo logfile=log.log exclude=table:\" in \(\'pub_attachment\',\'pub_signseal\'\)\"
job_name=my_job
oracle使用expdp和impdp搭建資料庫
檢視幫助 expdp help parallel 是並行數,expdp和impdp都可以使用這個引數 expdp匯出 1.建立資料幫浦路徑 sql create or replace directory imostdb as opt oracle imost directory created.需確...
oracle中expdp和impdp 資料幫浦
使用expdp和impdp時應該注意的事項 exp和imp是客戶端工具程式,它們既可以在客戶端使用,也可以在服務端使用。expdp和impdp是服務端的工具程式,他們只能在oracle服務端使用,不能在客戶端使用。imp只適用於exp匯出的檔案,不適用於expdp匯出檔案 impdp只適用於expd...
Oracle使用expdp和exp匯入匯出資料
一 資料幫浦方式 1 新建par檔案 1.1新建impdp.par檔案 要匯入的資料庫使用者名稱 密碼 userid lee 123 dmp檔案所在路徑的變數,可以在資料庫中配置 directory data pump dir dmp檔名稱,如果想匯入多個,寫成test u.dmp即可 dumpfi...