oracle exp 命令使用

2021-09-01 20:17:32 字數 904 閱讀 1002

==匯出乙個完整資料庫[結構+資料]*****===

exp system/password file=/u01/20101115.dmp log=/u01/20101115.log full=y

==只匯出資料庫的結構而不匯出裡面的資料*****

exp system/password file=/u01/20101115.dmp log=/u01/20101115.log full=y rows=n

==匯出使用者admin的所有資料*****====

exp system/password file=/u01/20101115.dmp log=/u01/20101115.log owner=admin

==如:同時匯出admin和visitor兩個使用者的所有物件===

exp system/password file=/u01/20101115.dmp log=/u01/20101115.log owner=(admin,visitor)

==只匯出乙個table,如只匯出admin使用者下面的testtable表=

exp admin/adminpassword file=/u01/20101115.dmp log=/u01/20101115.log tables=testtable

==如果需要匯出多個表******************************====

exp admin/adminpassword file=/u01/20101115.dmp log=/u01/20101115.log tables=(table1,table2,table3)

exp system/password file=/u01/20101115.dmp log=/u01/20101115.log tables=(admin.testtable,visitor.table1)

oracle exp 中有關direct使用

oracle提供2種模式匯出表資料,傳統模式conventional path和直接模式direct path,有direct指定。conventional path export 比較direct path export 一 差異 1.conventional path export.傳統匯出模式...

oracle exp和imp命令引數詳解

oracle中用exp imp命令引數詳解 用 exp 數 據 導 出 1 將資料庫test完全匯出,使用者名稱system 密碼manager 匯出到d daochu.dmp中 exp system manager test rows y indexes y compress n buffer 6...

oracle exp 用法例項

資料匯出 1 將資料庫test完全匯出,使用者名稱system 密碼manager 匯出到d daochu.dmp中 exp system manager test file d daochu.dmp full y 2 將資料庫中system使用者與sys使用者的表匯出 exp system man...