您的位置:首页 > 其它

DataPump Export (EXPDP) Error ORA-39095 Dump File Space Has Been Exhausted [ID 559692.1]

2013-06-21 13:23 1246 查看
In this Document

Symptoms

Cause

Solution

Applies to:

Oracle Server - Enterprise Edition - Version: 10.2.0.1 to 11.2.0.2 - Release: 10.2 to 11.2

Information in this document applies to any platform.

***Checked for relevance on 23-MAR-2012***

Symptoms

You received the error message:

ORA - 39095 : " dump file space has been exhausted. Unable to allocate 4096 bytes"

jobsystem.sys_export_full_02 stops due to fatal error.

while performing DataPump export:

- when exporting a large number of tables then it completely stops

- the jobs may remain in the DataPump export tables

- no trace generated at the time of the failure.

Cause

You limited the number of files in DUMPFILE parameter with limited FILESIZE , i.e.:

full=Y

directory=dpump_dir

dumpfile=full_1.dmp,full_2.dmp,full_3.dmp,full_4.dmp

filesize=3000000000


This means max. 4 dump files with file size 3000000000 bytes (4x2.79 GB).

Solution

1. Use the dynamic format (i.e dumpfile=full_%U.dmp) :

The 'wildcard' specification for the dump file can expand up to 99 files. If 99 files have been generated before the export has completed, it will again return the ORA-39095 error.

2. If this is yet not enough and more files are needed, a workaround would be to speciyy a bigger FILESIZE parameter.

3. If this is inconvenient, then another option is to use this syntax:

dumpfile=fullexp%U.dmp, fullexp2_%U.dmp, fullexp3_%U.dmp


which can expand up to 3*99 files.

If encountering problems containing the dump in a single directory using this solution, you may prefer this syntax:

dumpfile=dmpdir1:fullexp1_%U.dmp, dmpdir2:fullexp2_%U.dmp, dmpdir3:fullexp3_U.dmp


(assuming the 3 directory objects listed above had been already created first).
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐