EXP-00002: error in writing to export file
the moment the dmp file reaches 2GB.
Any ideas on how do I over
come this 2GB limit ?
Check this out, it might help in beating 2GB barrier.
-- create a named pipe
$ mknod exp.pipe p
-- read the pipe - output to compress in the background
$ compress < exp.pipe > scott.exp.Z &
-- you could use any compression utility.
-- feed the pipe
$ exp userid=scott/tiger file=exp.pipe ...
-R.K.Muthu