標籤:oracle 匯出 匯入
今天閑來無事,就導了一個資料庫玩玩,順便總結下
0、cmd 命令 管理員權限登入資料庫
sqlplus / as sysdba
1、cmd 串連遠端資料庫
sqlplus xn_balance/[email protected]:1521/orcl
--------匯出
2、cmd 命令匯出資料庫(沒必要連上資料庫,直接導)
exp xn_balance/[email protected]:1521/orcl file=d:/daochu.dmp full=y
3、 將資料庫中system使用者與sys使用者的表匯出
exp system/[email protected] file=d:/daochu.dmp owner=(system,sys)
4、將資料庫中的表inner_notify、notify_staff_relat匯出
exp system/manager@TESTDB2 file= d:/data/newsmgnt.dmp tables=(inner_notify,notify_staff_relat)
5、 將資料庫中的表table1中的欄位filed1以"00"打頭的資料匯出
exp system/[email protected] file=d:/daochu.dmp tables=(table1) query=/" where filed1 like ‘00%‘/"
---------匯入
6、匯入資料庫檔案
imp gzjs/[email protected] file=d:\daochu.dmp full=y ignore=y;
7、匯入某張表
imp gzjs/[email protected] file=d:/table.dmp tables=(balance_user) ignore=y
-----------注意事項
8、匯出的檔案如果是DBA許可權的,匯入的時候也必須是DBA許可權,
9、資料庫匯出匯入版本問題
一般低版本匯出的檔案 在高版本中可以成功匯入
也就是說高版本相容低版本。
10、匯入的時候,會出現一些警告資訊:比如匯出的使用者和匯入的使用者名稱不一致,不理即可。
11、匯入的時候,一般在後面加上ignore=y,不加的時候,如果表已經存在了,就會報錯。