Oracle的匯入和匯出

2021-08-14 11:11:37 字數 730 閱讀 9638

1.oracle資料的整庫的匯出和匯入

1.整庫的匯入匯出

exp

system/oracle file= file_name full=y;//指定備份檔案名稱。

匯入:imp system/oracle full=y

如果指定file引數,則按照file制定的備份檔案進行恢復

imp system/oracle full=y file=file_name;

2.按使用者導

1.按照使用者匯出:

expsystem/oracle owner=wateruser file=wateruser.dmp

2.按照使用者匯入:

imp system/oracle file=wateruser.dmp fromuser=wateruser

3.按表導

1.按照表匯出

exp wateruser/oracle file=a.dmp tables=t_account,a_area

;//多表之間用逗號,隔開

2.按照表匯入

imp wateruser/oracle file=a.dmp tables=t_account,a_area

;

oracle匯入和匯出

oracle資料庫的匯出 1.匯出使用者 ytpms 的表 gs gsitem list exp userid ytpms ytpms orcl file f sdf.dmp tables gs gsitem list 2.匯出使用者 ytpms 的方案 exp userid ytpms ytpms...

Oracle的匯出和匯入

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

Oracle的匯出和匯入

摘自 資料庫的備份操作是在整個專案執行中最重要的工作之一。一 資料的匯出和匯入 資料的匯出和匯入是針對於乙個使用者的備份操作,可以按照如下的方式完成 1 資料的匯出 2 資料的匯入 但是以上的操作只是做為乙個演示,因為這種備份操作本身只適合資料量小的情況,如果資料量較大的話,這種操作是會損耗效能的,...