expdp和impdp自動使用resumable特性

warehouse發表於2009-09-03
對比expdp、impdp和exp、imp發現前者沒有了resumable功能,測試發現expdp和impdp自動使用了resumable特性[@more@]

C:>expdp directory=dir_temp dumpfile=t.dmp tables=t2

Export: Release 10.2.0.1.0 - Production on 星期四, 03 9月, 2009 18:41:41

Copyright (c) 2003, 2005, Oracle. All rights reserved.

連線到: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
With the Partitioning, OLAP and Data Mining options
啟動 "TEST"."SYS_EXPORT_TABLE_01": directory=dir_temp dumpfi
le=t.dmp tables=t2
正在使用 BLOCKS 方法進行估計...
處理物件型別 TABLE_EXPORT/TABLE/TABLE_DATA
使用 BLOCKS 方法的總估計: 23 MB
處理物件型別 TABLE_EXPORT/TABLE/TABLE
處理物件型別 TABLE_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS
. . 匯出了 "TEST"."T2" 18.84 MB 759316 行
已成功載入/解除安裝了主表 "TEST"."SYS_EXPORT_TABLE_01"
******************************************************************************
TEST.SYS_EXPORT_TABLE_01 的轉儲檔案集為:
C:BAKT.DMP
作業 "TEST"."SYS_EXPORT_TABLE_01" 已於 18:42:11 成功完成


C:>
--==================================
SQL> select file_id,file_name,tablespace_name,bytes/1024/1024 m ,autoextensible
from dba_data_files;

FILE_ID FILE_NAME TABLESPACE M AUT
---------- ------------------------------ ---------- ---------- ---
1 C:TEMPSYSTEM01.DBF SYSTEM 300 YES
9 C:TEMPUSERS.DBF USERS 5 NO
6 C:TEMPUNDOTBS02.DBF UNDOTBS2 10 NO
5 C:TEMPTEST.DBF TEST 55 YES
3 C:TEMPSYSAUX01.DBF SYSAUX 120 YES
--==================================
C:>impdp directory=dir_temp dumpfile=t.dmp remap_schema=(test:sc
ott) remap_tablespace=(test:users)

Import: Release 10.2.0.1.0 - Production on 星期四, 03 9月, 2009 18:48:42

Copyright (c) 2003, 2005, Oracle. All rights reserved.

連線到: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
With the Partitioning, OLAP and Data Mining options
已成功載入/解除安裝了主表 "TEST"."SYS_IMPORT_FULL_01"
啟動 "TEST"."SYS_IMPORT_FULL_01": directory=dir_temp dumpfil
e=t.dmp remap_schema=(test:scott) remap_tablespace=(test:users)
處理物件型別 TABLE_EXPORT/TABLE/TABLE
處理物件型別 TABLE_EXPORT/TABLE/TABLE_DATA
........這裡hang住了
--================================
檢視dba_resumable發現上面的impdp確實SUSPENDED:
SQL> select status,timeout,name,error_parameter1,error_parameter2,error_paramete
r3,error_parameter4 from dba_resumable;

STATUS TIMEOUT NAME ERROR ERROR ERROR ERROR
--------- ---------- ------------------------------ ----- ----- ----- -----
NORMAL 7200 TEST.SYS_IMPORT_FULL_01
SUSPENDED 7200 TEST.SYS_IMPORT_FULL_01.1 SCOTT T2 128 USERS

SQL> alter database datafile 9 autoextend on;

資料庫已更改。

SQL>
--==========================
datafile 9可以自動擴充套件之後impdp得以繼續:
C:>impdp directory=dir_temp dumpfile=t.dmp remap_schema=(test:sc
ott) remap_tablespace=(test:users)

Import: Release 10.2.0.1.0 - Production on 星期四, 03 9月, 2009 18:48:42

Copyright (c) 2003, 2005, Oracle. All rights reserved.

連線到: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
With the Partitioning, OLAP and Data Mining options
已成功載入/解除安裝了主表 "TEST"."SYS_IMPORT_FULL_01"
啟動 "TEST"."SYS_IMPORT_FULL_01": directory=dir_temp dumpfil
e=t.dmp remap_schema=(test:scott) remap_tablespace=(test:users)
處理物件型別 TABLE_EXPORT/TABLE/TABLE
處理物件型別 TABLE_EXPORT/TABLE/TABLE_DATA
ORA-39171: 作業出現可恢復的等待。
ORA-01653: 表 SCOTT.T2 無法透過 128 (在表空間 USERS 中) 擴充套件
. . 匯入了 "SCOTT"."T2" 18.84 MB 759316 行
處理物件型別 TABLE_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS
作業 "TEST"."SYS_IMPORT_FULL_01" 已經完成, 但是有 1 個錯誤 (於 18:55:00 完成)


C:>
C:>
--===========================
最後dba_resumable中的記錄自動被清除
SQL> select count(*) from dba_resumable;

COUNT(*)
----------
0

SQL>

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

相關文章