注: 如果有些表沒資料, 可能空表不會匯出, 還請注意
傳統方法:
通用命令:exp(imp) username/password@servicename:1521 file=「e:\temp.dmp」 full = y;
資料庫匯出舉例:
exp xinxiaoyong/[email protected]:1521 file=「e:\temp.dmp」 full = y;
exp:匯出命令,匯出時必寫。
imp:匯入命令,匯入時必寫,每次操作,二者只能選擇乙個執行。
username:匯出資料的使用者名稱,必寫;
password:匯出資料的密碼,必寫;
@:位址符號,必寫;
servicename:oracle的服務名,必寫;
1521:埠號,1521是預設的可以不寫,非預設要寫;
file=「e:\temp.dmp」 : 檔案存放路徑位址,必寫;
full=y :表示全庫匯出。可以不寫,則預設為no,則只匯出使用者下的物件;
方法細分:
1.完全匯入匯出:
exp(imp) username/password@servicename:1521 file=「e:\temp.dmp」 full = y;
2.部分使用者表table匯入匯出:
exp(imp) username/password@servicename:1521 file=「e:\temp.dmp」 tabels= (table1,table2,table3,…);
3.表空間tablespaces匯入匯出:
//乙個資料庫例項可以有n個表空間(tablespace),乙個表空間下可以有n張表(table)。
exp(imp) username/password@servicename:1521 file=「e:\temp.dmp」 tablespaces= (tablespace1,tablespace2,tablespace3,…);
4.使用者名稱username物件匯入匯出:
exp(imp) username/password@servicename:1521 file=「e:\temp.dmp」 owner(username1,username2,username3);
oracle資料庫匯入匯出cmd命令
資料庫匯出功能 1 將資料庫test完全匯出,使用者名稱system 密碼manager 匯出到d daochu.dmp中 exp system manager test file d daochu.dmp full y 2 將資料庫中system使用者與sys使用者的表匯出 exp system ...
oracle資料庫匯入匯出cmd命令
資料庫匯出功能 1 將資料庫test完全匯出,使用者名稱system 密碼manager 匯出到d daochu.dmp中 exp system manager test file d daochu.dmp full y 2 將資料庫中system使用者與sys使用者的表匯出 exp system ...
oracle 資料庫Cmd命令匯入匯出
imp 匯入資料庫 1.直接匯入資料表 imp username passwork orcl file d aa.dmp eg imp 使用者名稱 密碼 orcl file d dmp存放的路徑 exp匯出資料庫 1.匯出多張資料表 exp username passwork orcl file d...