(注意:高版本的oracle匯出的資料不能用低版本的oracle進行匯入)
一. 匯出工具 exp
1. 它是作業系統下乙個可執行的檔案 存放目錄/oracle_home/bin
exp匯出工具將資料庫中資料備份壓縮成乙個二進位制系統檔案.可以在不同os間遷移
它有三種模式:
a. 使用者模式: 匯出使用者所有物件以及物件中的資料;
b. 表模式: 匯出使用者所有表或者指定的表;
c. 整個資料庫: 匯出資料庫中所有物件。
2. 匯出工具exp互動式命令列方式的使用的例子
3. 匯出工具exp非互動式命令列方式的例子
$exp scott/tiger tables=(emp,dept) file=/directory/scott.dmp grants=y
說明:把scott使用者裡兩個表emp,dept匯出到檔案/directory/scott.dmp
$exp scott/tiger tables=emp query=/"where job=/'sale**an/' and sal/<1600/" file=/directory/scott2.dmp
說明:在exp裡面加上匯出emp的查詢條件job='sale**an' and sal<1600
(但我個人很少這樣用,還是把滿足條件的記錄生成臨時表後,再exp會方便一些)
$exp parfile=username.par file=/directory1/username_1.dmp,/directory1/username_2.dmp filesize=2000m log=/directory2/username_exp.log
引數檔案username.par內容
userid=username/userpassword
buffer=8192000
compress=n
grants=y
說明:username.par為匯出工具exp用的引數檔案,裡面具體引數可以根據需要去修改
filesize指定生成的二進位制備份檔案的最大位元組數
(可用來解決某些os下2g物理檔案的限制及加快壓縮速度和方便刻歷史資料光碟等)
二.匯入工具 imp
1. 它是作業系統下乙個可執行的檔案 存放目錄/oracle_home/bin
imp匯入工具將exp形成的二進位制系統檔案匯入到資料庫中.
它有三種模式:
a. 使用者模式: 匯出使用者所有物件以及物件中的資料;
b. 表模式: 匯出使用者所有表或者指定的表;
c. 整個資料庫: 匯出資料庫中所有物件。
只有擁有imp_full_database和dba許可權的使用者才能做整個資料庫匯入
imp步驟:
(1) create table (2) insert data (3) create index (4) create triggers,constraints
3.匯入工具imp非互動式命令列方式的例子
$ imp system/manager fromuser=jones tables=(accts)
$ imp system/manager fromuser=scott tables=(emp,dept)
$ imp system/manager fromuser=scott touser=joe tables=emp
$ imp scott/tiger file = expdat.dmp full=y
$ imp scott/tiger file = /mnt1/t1.dmp show=n buffer=2048000 ignore=n commit=y grants=y full=y log=/oracle_backup/log/imp_scott.log
$ imp system/manager parfile=params.dat
params.dat 內容
file=dba.dmp show=n ignore=n grants=y fromuser=scott tables=(dept,emp)
4.匯入工具imp可能出現的問題
(1) 資料庫物件已經存在
一般情況, 匯入資料前應該徹底刪除目標資料下的表, 序列, 函式/過程,觸發器等;
資料庫物件已經存在, 按預設的imp引數, 則會匯入失敗
如果用了引數ignore=y, 會把exp檔案內的資料內容匯入
如果表有唯一關鍵字的約束條件, 不合條件將不被匯入
如果表沒有唯一關鍵字的約束條件, 將引起記錄重複
(2) 資料庫物件有主外來鍵約束
不符合主外來鍵約束時, 資料會匯入失敗
解決辦法: 先導入主表, 再匯入依存表
disable目標匯入物件的主外來鍵約束, 匯入資料後, 再enable它們
(3) 許可權不夠
如果要把a使用者的資料匯入b使用者下, a使用者需要有imp_full_database許可權
(4) 匯入大表( 大於80m ) 時, 儲存分配失敗
預設的exp時, compress = y, 也就是把所有的資料壓縮在乙個資料塊上.
匯入時, 如果不存在連續乙個大資料塊, 則會匯入失敗.
匯出80m以上的大表時, 記得compress= n, 則不會引起這種錯誤.
(5) imp和exp使用的字符集不同
如果字符集不同, 匯入會失敗, 可以改變unix環境變數或者nt登錄檔裡nls_lang相關資訊.
匯入完成後再改回來.
(6) imp和exp版本不能往上相容
imp可以成功匯入低版本exp生成的檔案, 不能匯入高版本exp生成的檔案
根據情況我們可以用
$ imp username/password@connect_string
說明: connect_string 是在/oracle_home/network/admin/tnsnames.ora
定義的本地或者遠端資料庫的名稱
注意事項:
unix: /etc/hosts 要定義本地或者遠端資料庫伺服器的主機名
win98: windows/hosts 和ip位址的對應關係
win2000: winnt/system32/drivers/etc/hosts
Oracle匯入匯出詳解
當所需要匯出的檔案較小時可以直接使用客戶端工具匯出為.sql檔案。當匯出檔案較大時,以上方法會很慢。此時就可以使用以下方法,直接上 有注釋 create directory 目錄名 as 目錄路徑 例 create directory expdp dmp as d expdp dmp 資料庫中查詢表...
oracle匯入匯出命令
oracle匯入匯出命令 匯出是 exp 使用者 密碼 資料庫名 file 資料檔案路徑 log 日誌檔案路徑 匯入是 imp 使用者 密碼 資料庫名 file 資料檔案路徑 full y 注意 為了完整匯入,應將使用者許可權設為dba 資料匯出 1 將資料庫完全匯出 exp 使用者 密碼 資料庫名...
oracle匯入匯出命令
統一認證 使用資料幫浦匯入匯出 只能在oracle的本地進行,如果是伺服器需遠端 前提條件 為匯入匯出設定儲存及讀取檔案路徑 在cmd命令視窗執行 1 連線資料庫 cmd sqlplus system oracle projm as sysdba 2 建立directory dir dp 存放 匯出...