impdp和expdp的總結

zhangshengdong發表於2011-11-18
expdp工具匯出的步驟:
1、建立DIRECTORY
create directory dir_temp as 'D:\OracleTest\dir_temp';
2、授權
Grant read,write on directory dir_temp to scott;
--檢視目錄及許可權
SELECT privilege, directory_name, DIRECTORY_PATH FROM user_tab_privs t, all_directories d
 WHERE t.table_name(+) = d.directory_name ORDER BY 2, 1;
3、執行匯出
expdp scott/tiger@orcl schemas=scott directory=dir_temp dumpfile =zhang.dmp logfile=zhang.log;
 
建立一個使用者zhang
//建立臨時表空間
create temporary tablespace test_temp
tempfile 'D:\oracle\product\10.2.0\oradata\test_temp01.dbf'
size 32m
autoextend on
next 32m maxsize 2048m
extent management local;
 
//建立資料表空間
create tablespace test_data
logging
datafile 'D:\oracle\product\10.2.0\oradata\test_data01.dbf'
size 32m
autoextend on
next 32m maxsize 2048m
extent management local;
//建立使用者並指定表空間
create user zhang identified by zhang
default tablespace test_data
temporary tablespace test_temp;
 
使用者建立好之後,賦予相關許可權;
grant connect,resource to zhang;
Grant read,write on directory dir_temp to zhang;
grant imp_full_database to ZHANG;(這個是給予能進行匯入操作的許可權)
 
impdp工具匯入的步驟:
impdp zhang/zhang DIRECTORY=dir_temp DUMPFI
LE=zhang.dmp logfile=zhang.log   remap_schema=scott:zhang
 
即可匯入表到不同使用者。
 
按指定表名匯入
impdp zhang/zhang DIRECTORY=dir_temp tables=scott.dept  DUMPFILE=zhang.dmp logfile=zhang.log   remap_schema=scott:zhang
 
可匯入指定表名。
 
                                                                 以上,感謝蒙昭良的個人空間,藍紫部落格園,和論壇各個網友,個人只是學習筆記總結。

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/26446098/viewspace-711555/,如需轉載,請註明出處,否則將追究法律責任。

相關文章