expdp和impdp自動使用resumable特性
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/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- expdp, impdp characteristic 特性--索引索引
- 【EXPDP/IMPDP】使用 EXPDP/IMPDP工具“模糊”匯出和匯入
- oracle expdp和impdp使用例子Oracle
- ORACLE EXPDP IMPDP 中停止和啟動Oracle
- EXPDP/IMPDP工具的使用
- Expdp,impdp工具的使用
- Oracle expdp/impdp 使用示例Oracle
- expdp/impdp 使用總結
- EXPDP 和 IMPDP 資料泵的使用_1
- EXPDP 和 IMPDP 資料泵的使用_2
- impdp和expdp的總結
- expdp impdp 使用命令解析
- ORACLE EXPDP IMPDP 的停止和啟動及監控Oracle
- impdp/expdp 示例
- oracle expdp and impdpOracle
- 23.EXPDP 和 IMPDP(筆記)筆記
- expdp/impdp的原理及使用(轉)
- EXP/IMP和EXPDP/IMPDP的區別
- expdp 和impdp的筆記[轉帖]筆記
- 使用expdp、impdp遷移資料庫資料庫
- oracle實驗記錄 (expdp/impdp使用)Oracle
- Expdp Impdp詳解
- oracle expdp/impdp用法Oracle
- expdp/impdp的使用總結 (供查詢使用)
- exp|imp和expdp|impdp以及sqlldr視訊SQL
- Oracle 12c新特性 - Data Pump (expdp/impdp) 功能增強Oracle
- expdp,impdp的多使用者遷移
- expdp impdp Data Pump(資料泵)使用解析
- expdp/impdp 用法詳解
- expdp/impdp操作例項
- ORACLE expdp/impdp詳解Oracle
- 將partition expdp後impdp
- expdp/impdp用法詳解
- 【IMPDP】使用IMPDP自動建立使用者並完成資料的匯入
- exp/expdp imp/impdp的使用【實戰實用】
- exp/imp expdp/impdp Tables 萬用字元 % 的使用字元
- ORACLE 10G expdp/impdpOracle 10g
- Oracle10g expdp & impdpOracle