使用expdp、impdp遷移資料庫

mengzhaoliang發表於2010-05-07

expdp、impdp在Oracle10g中才開始使用,
下面的源資料庫為Oracle10.2,目標資料庫為Oracle11.2
1、在源資料庫伺服器A上建立expdp的匯出目錄
$ pwd
/home/oraoms
$ mkdir exp_dir

SQL> create or replace directory exp_dir as '/home/oraoms/exp_dir';

Directory created.

2、在源資料庫A上查詢比較大的表,不影響系統執行的大表不匯入到目標資料庫B中
select *
  from (select table_name,
               round((blocks * 8192 / 1024 / 1024 ), 2) "MB"
          from user_tables
         where blocks is not null
         order by blocks desc)
 where rownum < 21

下面這些表很大可以不匯出來:
'MLOG_ENGI_GTB','MLOG_ENGI_MUDV','MLOG_ENGI_HYD'

3、在源資料庫A中匯出
expdp A_user/A_user directory=exp_dir dumpfile=20100506.dump logfile=20100506.log schemas=A_user exclude=table:\"IN\(\'MLOG_ENGI_GTB\',\'MLOG_ENGI_MUDV\',\'MLOG_ENGI_HYD\'\)\"
在匯出是想單引號,括號,需要“\”作為轉化符。
匯出的資料大概8GB多,共用了18分鐘左右。
4、在源資料庫A檢視該使用者物件數量,用力驗證匯入是否成功
select count(*) from user_objects

7532個物件

5、在源資料庫A中檢視錶空間,在目標庫B中也建立相應的表空間
select tablespace_name, count(*)
  from user_tables
 group by tablespace_name
 order by 2;

MLOG_NORM_SPACE


在目標資料庫B建立相關的表空間:
檢視目標資料庫的資料檔案位置
select name from v$datafile;
如:
create tablespace MLOG_NORM_SPACE
datafile '/oratest/app/oracle/oradata/orcl/MLOG_NORM_SPACE.dbf'
size 5M autoextend on

建立相應的使用者並授權
create user test
identified by test
default tablespace PUB_NORM_SPACE

grant dba to test;


6、在目標資料庫B建立匯入目錄
>mkdir /oratest/imp_dir
把該目錄授權給oracle使用者
>chown -R oracle:dba /oratest/imp_dir

7、把匯出的資料ftp到目標資料庫B中
ftp 目標資料庫ip
put 20100506.dump

8、在目標資料庫B建立匯入目錄
SQL>create or replace directory imp_dir as '/oratest/imp_dir';

9、在目標資料庫B中匯入資料
>su - oracle
impdp test/test DIRECTORY=imp_dir DUMPFILE=20100506.dump logfile=20100506imp.log REMAP_SCHEMA=A_user:test


10、在目標資料庫B中建立 沒有匯出源資料庫A的大表的結構。
可以把表結構複製到目標資料庫B中。
或者在目標資料庫B中建立db_link,然後再建立相應的表結構


11、在目標資料庫B檢視該使用者物件數量,用來驗證物件是否齊全
select count(*) from user_objects


注:
如果有些表中的欄位用到了Oracle的關鍵字,需要用雙引號括起來。如time date,換成"time" date.

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/12778571/viewspace-662116/,如需轉載,請註明出處,否則將追究法律責任。

相關文章