>>> On Tue, Aug 21, 2007 at 7:23 PM, in message <46CB81EF(dot)7080403(at)computer(dot)org>,
David Wall <d(dot)wall(at)computer(dot)org> wrote:
> I'm using cygwin on WinXP
>
> gunzip -c backup81.gz | pg_restore -v -O -d mydb
>
> This returned an error: pg_restore: [archiver] did not find magic
> string in file header
Out of curiosity, does it do the same thing for?:
gunzip < backup81.gz | pg_restore -v -O -d mydb
-Kevin