Datapump filesize parameter
Default: 0
(unlimited)
Purpose
Specifies the maximum size of each dump file. If the size is reached for any member of the dump file set, that file is closed and an attempt is made to create a new file, if the file specification contains a substitution variable.
Syntax and Description
FILESIZE=integer[B | K | M | G]
The integer
can be followed by B
, K
, M
, or G
(indicating bytes, kilobytes, megabytes, and gigabytes respectively). Bytes is the default. The actual size of the resulting file may be rounded down slightly to match the size of the internal blocks used in dump files.
Restrictions
The minimum size for a file is ten times the default Data Pump block size, which is 4 kilobytes.
Example :
C:\Users\mazar>expdp testnet/testnet tables=mytest directory=data_pump_dir dumpfile=filesize.dmp logfile=estimatest.log filesize=50k Export: Release 11.2.0.1.0 - Production on Tue Nov 9 10:53:50 2010 Copyright (c) 1982, 2009, Oracle and/or its affiliates. All rights reserved. Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production With the Partitioning, OLAP, Data Mining and Real Application Testing options Starting "TESTNET"."SYS_EXPORT_TABLE_01": testnet/******** tables=mytest directory=data_pump_dir dumpfile=filesize.dmp logfile=estimatest.log filesize=50k Estimate in progress using BLOCKS method... Processing object type TABLE_EXPORT/TABLE/TABLE_DATA Total estimation using BLOCKS method: 64 KB Processing object type TABLE_EXPORT/TABLE/TABLE Processing object type TABLE_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS . . exported "TESTNET"."MYTEST" 6.625 KB 1 rows ORA-31694: master table "TESTNET"."SYS_EXPORT_TABLE_01" failed to load/unload ORA-39095: Dump file space has been exhausted: Unable to allocate 4096 bytes Job "TESTNET"."SYS_EXPORT_TABLE_01" stopped due to fatal error at 10:54:43
C:\Users\mazar>expdp testnet/testnet tables=mytest directory=data_pump_dir dumpfile=filesizenew.dmp logfile=estimatestnew.log filesize=100k Export: Release 11.2.0.1.0 - Production on Tue Nov 9 12:26:27 2010 Copyright (c) 1982, 2009, Oracle and/or its affiliates. All rights reserved. Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production With the Partitioning, OLAP, Data Mining and Real Application Testing options Starting "TESTNET"."SYS_EXPORT_TABLE_02": testnet/******** tables=mytest directory=data_pump_dir dumpfile=filesizenew.dmp logfile=estimatestnew.log filesize=1 00k Estimate in progress using BLOCKS method... Processing object type TABLE_EXPORT/TABLE/TABLE_DATA Total estimation using BLOCKS method: 64 KB Processing object type TABLE_EXPORT/TABLE/TABLE Processing object type TABLE_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS . . exported "TESTNET"."MYTEST" 6.625 KB 1 rows Master table "TESTNET"."SYS_EXPORT_TABLE_02" successfully loaded/unloaded ****************************************************************************** Dump file set for TESTNET.SYS_EXPORT_TABLE_02 is: C:\APP\ORACLE\MAZAR\ADMIN\AZARDB\DPDUMP\FILESIZENEW.DMP Job "TESTNET"."SYS_EXPORT_TABLE_02" successfully completed at 12:28:17
Ref :
http://download.oracle.com/docs/cd/B19306_01/server.102/b14215/dp_export.htm
Trackbacks & Pingbacks