> I created a full-backup of my sapdb(running on linux). This file
> is > 2 GB. For better handling I compressed this backup with gzip.
> The result is a .gz -file with 980MB.
> 
> Now I want to decompress the file on another linux machine, but 
> gzip tells me "file too large" :-(
> 
> After "googling" about this message I installed the gzip Version 1.3.3
> from gzip.org, but the problem is still the same.
> 
> So, 
> 1.) can somebody tell me, how to decompress my backup or
> 2.) is it possible to split the backup in some way ??

Maybe you can restore from a pipe. To get the data into the pipe use

   gzip --decompress --stdout <gzipped file> > <pipename>

Otherwise you can split the uncompressed data:

   gzip --decompress --stdout <gzipped file> | split --bytes=2047m

This will generate files xaa, xab ... with a size of 2047 MB.

To pipe these into whatever use:

    cat xaa xab > <pipename>

HTH
Christian

-- 
#include <std_disclaimer.h> 
/* The opinions stated above are my own and not 
   necessarily those of my employer. */
_______________________________________________
sapdb.general mailing list
[EMAIL PROTECTED]
http://listserv.sap.com/mailman/listinfo/sapdb.general

Reply via email to