1. 程式人生 > >Oracle11G 資料庫匯入匯出(expdp,impdp)

Oracle11G 資料庫匯入匯出(expdp,impdp)

一,匯入.dump資料庫檔案(expdp 命令匯出的)步驟。

    1、建立匯入使用者及表空間,為一般為expdp命令匯出時的使用者。

       create tablespace tempspace datafile 'D:\DB\Oracle11G\dbdata\orcl\tempspace.ORA' size 1024M autoextend on next 32M;
       CREATE USER tempuser IDENTIFIED BY tempuser default tablespace tempspace;

    2、建立 directory 目錄,該目錄為存放.dump檔案的真實路徑,匯入的時候impdp會自動到該目錄下查詢匯入檔案。

      create directory TEMP_DUMP as 'C:/dumps';
      grant read,write on directory TEMP_DUMP to tempuser;
    3、匯入資料庫。
      impdp tempuser/tempuser DIRECTORY=TEMP_DUMP DUMPFILE=CKBS20160617.DMP FULL=y;
Enter 萬事大吉。