Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: Export bigger then 2G with Oracle7.3.4
You don't mention OS, but if it's a flavor of unix, you could probably
do:
mknod my_pipe p
exp file=my_pipe <all other export options> &
split -b 2047m my_pipe exp.dmp
This will generate multiple files, 2.047 MB per file. They will be
named exp.dmpaa, exp.dmpab, exp.dmpac, etc,etc.....
To import, you'd simply do:
cat exp.dmp?? >> my_pipe &
imp file=my_pipe <all other import options>
Hope that helps,
-Mark
Mark J. Bobak
Oracle DBA
ProQuest Company
Ann Arbor, MI
"Imagination was given to man to compensate him for what he is not, and
a sense of humor was provided to console him for what he is." --Unknown
-----Original Message-----
Sent: Friday, January 09, 2004 8:59 AM
To: Multiple recipients of list ORACLE-L
Hi DBAs,
Because of some requirements from one of our vendor, we still have a
database running Oracle7.3.4 on WindowsNT and since this package is no
longer used, so we
want to export the content of this database.
The database is around 60G, one table is 55G. So a simple export on
release
7 will crash when I will get 2G of dump file.
The export utility for release 7 doesn't allow us to create multiple
files,
but the export utility for release 8 does.
I know that they recommend to always use the lower version of export,
but is
there a way to use export 8i and create multiple files on a Oracle7.3.4
database?
If not, what can I do?
Thanks
Luc
--
Please see the official ORACLE-L FAQ: http://www.orafaq.net
--
Author:
INET: Luc.Demanche_at_astrazeneca.com
Fat City Network Services -- 858-538-5051 http://www.fatcity.com San Diego, California -- Mailing list and web hosting servicesto: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
---------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message
Fat City Network Services -- 858-538-5051 http://www.fatcity.com San Diego, California -- Mailing list and web hosting servicesto: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). Received on Fri Jan 09 2004 - 08:39:36 CST
---------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message
![]() |
![]() |