I'm planning to compress the Oracle export dump files of all Oracle database servers to reduce space usage on their disks.

My question is: Do you know of any good compression utility for compressing this type of file?

link|improve this question

0% accept rate
feedback

4 Answers

Oracle dumps files use a proprietary binary format. So you want a standard compression that is good for binary data. bzip2 is good with binary data, so I would recommend that.

link|improve this answer
feedback

HERE is a great article I used when making a backup script on some linux machines. Worked really well. I ended up using rzip for my needs. I used it to backup and compress all types of data files including SQL database dumps.

link|improve this answer
feedback

I'd first try using 7zip with ultra compression level and see what you can get. I definitely get better results from .7z than the .zip format...

link|improve this answer
feedback

bzip2 tends to be my default answer to such a task.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.