ORACLE imp&exp使用

來源:互聯網
上載者:User

exp/imp匯出匯入工具的使用

2004-02 餘楓一. 匯出工具 exp1. 它是作業系統下一個可執行檔檔案 存放目錄/ORACLE_HOME/bin   exp匯出工具將資料庫中資料備份壓縮成一個二進位系統檔案.可以在不同OS間遷移      它有三種模式:       a.  使用者模式:匯出使用者所有對象以及對象中的資料;       b.  表模式:匯出使用者所有表或者指定的表;       c.  整個資料庫:匯出資料庫中所有對象。2. 匯出工具exp互動式命令列方式的使用的例子$exp test/test123@appdbEnter array fetch buffer size: 4096 > 斷行符號Export file: expdat.dmp > m.dmp  產生匯出的檔案名稱 (1)E(ntire database), (2)U(sers), or (3)T(ables): (2)U > 3Export table data (yes/no): yes > 斷行符號Compress extents (yes/no): yes > 斷行符號Export done in ZHS16GBK character set and ZHS16GBK NCHAR character setAbout to export specified tables via Conventional Path ...Table(T) or Partition(T:P) to be exported: (RETURN to quit) > cmamenu  要匯出的表名. . exporting table                        CMAMENU       4336 rows exportedTable(T) or Partition(T:P) to be exported: (RETURN to quit) >要匯出的表名nTable(T) or Partition(T:P) to be exported: (RETURN to quit) > 斷行符號Export terminated successfully without warnings. 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=/'salesman/' and sal/<1600/" file=/directory/scott2.dmp 說明:在exp裡面加上匯出emp的查詢條件job='salesman' 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/userpasswordbuffer=8192000compress=ngrants=y說明:username.par為匯出工具exp用的參數檔案,裡面具體參數可以根據需要去修改     filesize指定產生的二進位備份檔案的最大位元組數          (可用來解決某些OS下2G物理檔案的限制及加快壓縮速度和方便刻曆史資料光碟片等)二.匯入工具 imp1. 它是作業系統下一個可執行檔檔案 存放目錄/ORACLE_HOME/binimp匯入工具將EXP形成的二進位系統檔案匯入到資料庫中.   它有三種模式:       a.  使用者模式:匯出使用者所有對象以及對象中的資料;       b.  表模式:匯出使用者所有表或者指定的表;       c.  整個資料庫:匯出資料庫中所有對象。          只有擁有IMP_FULL_DATABASE和DBA許可權的使用者才能做整個資料庫匯入      imp步驟:   (1) create table  (2) insert data  (3) create index (4) create triggers,constraints2.匯入工具imp互動式命令列方式的例子$ impImport: Release 8.1.6.0.0 - Production on 星期五 12月 7 17:01:08 2001(c) Copyright 1999 Oracle Corporation.  All rights reserved.使用者名稱:  test口令:****串連到: Oracle8i Enterprise Edition Release 8.1.6.0.0 - 64bit ProductionWith the Partitioning optionJServer Release 8.1.6.0.0 - Production匯入檔案: expdat.dmp> /tmp/m.dmp輸入插入緩衝區大小(最小為 8192 ) 30720>經由常規路徑匯出由EXPORT:V08.01.06建立的檔案警告: 此對象由 TEST 匯出, 而不是目前使用者已經完成ZHS16GBK字元集和ZHS16GBK NCHAR 字元集中的匯入只列出匯入檔案的內容(yes/no):no>由於對象已存在, 忽略建立錯誤(yes/no):no> yes匯入許可權(yes/no):yes>匯入表資料(yes/no):yes>匯入整個匯出檔案(yes/no):no> yes. 正在將TEST的對象匯入到 SCOTT. . 正在匯入表                       "CMAMENU"       4336行被匯入成功終止匯入,但出現警告。 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
 
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.