Re: 7 hrs for a pg_restore?

From: Chris <dmagick(at)gmail(dot)com>
To: Gregory Stark <stark(at)enterprisedb(dot)com>
Cc: pgsql-performance(at)postgresql(dot)org
Subject: Re: 7 hrs for a pg_restore?
Date: 2008-02-20 23:35:16
Message-ID: 47BCB934.6020205@gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance


> When I said "obfuscating" I meant it. I'm pretty familiar with sh scripting
> and I'm not even sure what the && behaviour would do.

It chains commands together so if the first fails the second doesn't happen.

$ echo 1 && echo 2
1
2

$ echo '1234' > /etc/file_that_doesnt_exist && echo 2
-bash: /etc/file_that_doesnt_exist: Permission denied

--
Postgresql & php tutorials
http://www.designmagick.com/

In response to

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message bh yuan 2008-02-21 05:13:50 Question about shared_buffers and cpu usage
Previous Message Gregory Stark 2008-02-20 23:31:49 Re: 7 hrs for a pg_restore?