其實這個是個很常見的問題,寫下來做紀念吧。
說明:
而在11GR2后EXPDP 和 IMDP的WORKER進程在設置parallel參數(shù)時會在多個INSTANCE啟動,所以DIRECTORY必須在共享磁盤上,如果沒有設置共享磁盤需要指定cluster=no 來防止報錯。
為察哈爾右翼中旗等地區(qū)用戶提供了全套網(wǎng)頁設計制作服務,及察哈爾右翼中旗網(wǎng)站建設行業(yè)解決方案。主營業(yè)務為成都網(wǎng)站設計、成都網(wǎng)站制作、察哈爾右翼中旗網(wǎng)站設計,以傳統(tǒng)方式定制建設網(wǎng)站,并提供域名空間備案等一條龍服務,秉承以專業(yè)、用心的態(tài)度為用戶提供真誠的服務。我們深信只要達到每一位用戶的要求,就會得到認可,從而選擇與我們長期合作。這樣,我們也可以走得更遠!
今晚是個苦逼的日子明天需要導數(shù)據(jù)做ogg同步,因為數(shù)據(jù)量比較大,所以晚上導出,明天白天上班再導入到其它數(shù)據(jù)庫,因此選用expdp做同步工具,可以參考如下博文:
https://blog.51cto.com/1937519/2177360
https://blog.51cto.com/1937519/2177352
剛開始導出時配置:
[oracle@scm02db01 ~]$ cat aaa.txt
dumpfile = app20180919_%U.dmp
logfile = wms20180919.log
directory = orabackup
schemas=wms
parallel=4
include=table:"in(select name from system.exp_table)"
include=FUNCTION
include=PROCEDURE
include=view
include=TRIGGER
include=SEQUENCE
include=SYNONYM
flashback_scn=6093937115518
報如下錯誤:
[oracle@scm02db01 ~]$ expdp system parfile=aaa.txt
Export: Release 11.2.0.4.0 - Production on Wed Sep 19 21:12:41 2018
Copyright (c) 1982, 2011, Oracle and/or its affiliates. All rights reserved.
Password:
Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
With the Partitioning, Real Application Clusters, Automatic Storage Management, OLAP,
Data Mining and Real Application Testing options
FLASHBACK automatically enabled to preserve database integrity.
Starting "SYSTEM"."SYS_EXPORT_SCHEMA_01": system/****parfile=aaa.txt
Estimate in progress using BLOCKS method...
Processing object type SCHEMA_EXPORT/TABLE/TABLE_DATA
Total estimation using BLOCKS method: 143.8 GB
Processing object type SCHEMA_EXPORT/SEQUENCE/SEQUENCE
Processing object type SCHEMA_EXPORT/SEQUENCE/GRANT/OWNER_GRANT/OBJECT_GRANT
Processing object type SCHEMA_EXPORT/TABLE/PROCACT_INSTANCE
Processing object type SCHEMA_EXPORT/TABLE/TABLE
Processing object type SCHEMA_EXPORT/TABLE/GRANT/OWNER_GRANT/OBJECT_GRANT
ORA-31693: Table data object "app"."T_WH_AAP" failed to load/unload and is being skipped due to error:
ORA-31617: unable to open dump file "/u01/dump_dir/wms20180919_03.dmp" for write
ORA-19505: failed to identify file "/u01/dump_dir/wms20180919_03.dmp"
ORA-27037: unable to obtain file status
Linux-x86_64 Error: 2: No such file or directory
Additional information: 3
ORA-27090: Unable to reserve kernel resources for asynchronous disk I/O
Additional information: 3
Additional information: 128
Additional i
ORA-31693: Table data object "app"."T_WH_AAP" failed to load/unload and is being skipped due to error:
ORA-31617: unable to open dump file "/u01/dump_dir/app20180919_04.dmp" for write
ORA-19505: failed to identify file "/u01/dump_dir/app20180919_04.dmp"
ORA-27037: unable to obtain file status
Linux-x86_64 Error: 2: No such file or directory
Additional information: 3
ORA-27090: Unable to reserve kernel resources for asynchronous disk I/O
Additional information: 3
Additional information: 128
Addition
Processing object type SCHEMA_EXPORT/TABLE/COMMENT
Processing object type SCHEMA_EXPORT/FUNCTION/FUNCTION
Processing object type SCHEMA_EXPORT/FUNCTION/GRANT/OWNER_GRANT/OBJECT_GRANT
Processing object type SCHEMA_EXPORT/PROCEDURE/PROCEDURE
Processing object type SCHEMA_EXPORT/PROCEDURE/GRANT/OWNER_GRANT/OBJECT_GRANT
Processing object type SCHEMA_EXPORT/FUNCTION/ALTER_FUNCTION
Processing object type SCHEMA_EXPORT/PROCEDURE/ALTER_PROCEDURE
ORA-31693: Table data object "app"."T_WH_APPP" failed to load/unload and is being skipped due to error:
ORA-31617: unable to open dump file "/s01/dump_dir/wms20180919_03.dmp" for write
ORA-19505: failed to identify file "/s01/dump_dir/wms20180919_03.dmp"
ORA-27037: unable to obtain file status
Linux-x86_64 Error: 2: No such file or directory
Additional information: 3
ORA-27090: Unable to reserve kernel resources for asynchronous disk I/O
Additional information: 3
Additional information: 128
Addition
......................................中間省略....................................
Addition
Processing object type SCHEMA_EXPORT/TABLE/INDEX/INDEX
Processing object type SCHEMA_EXPORT/TABLE/INDEX/FUNCTIONAL_INDEX/INDEX
Processing object type SCHEMA_EXPORT/TABLE/CONSTRAINT/CONSTRAINT
Processing object type SCHEMA_EXPORT/TABLE/INDEX/STATISTICS/INDEX_STATISTICS
Processing object type SCHEMA_EXPORT/TABLE/INDEX/STATISTICS/FUNCTIONAL_INDEX/INDEX_STATISTICS
^C
心里惦記著洗澡,忘記了這個是一套rac數(shù)據(jù)庫,而且導出的文件不是在共享存儲上,于是立刻按下ctrl +c 終止導出:
Export> kill_job
Are you sure you wish to stop this job ([yes]/no): yes
^CUDE-00001: user requested cancel of current operation
然后添加一句重新導出,一切正常:
cluster=no
完整如下:
dumpfile = app20180919_%U.dmp
logfile = wms20180919.log
directory = orabackup
schemas=wms
parallel=4
cluster=no
include=table:"in(select name from system.exp_table)"
include=FUNCTION
include=PROCEDURE
include=view
include=TRIGGER
include=SEQUENCE
include=SYNONYM
flashback_scn=6093937115518