Re: psql -1 with multiple files? - Mailing list pgsql-general

From Steve Crawford
Subject Re: psql -1 with multiple files?
Date
Msg-id 4ED80DB7.6060004@pinpointresearch.com
Whole thread Raw
In response to psql -1 with multiple files?  (Jay Levitt <jay.levitt@gmail.com>)
Responses Re: psql -1 with multiple files?
List pgsql-general
On 12/01/2011 02:01 PM, Jay Levitt wrote:
> Is there a way to load multiple .sql files in a single transaction? It
> looks like "psql -f file1 -f file2" or "psql -f file*" was a WIP patch
> that never happened, and from what I can tell, psql ignores the -1
> parameter when reading from STDIN, so I can't cat them together either:

 From the man-page, -1 works in conjunction with -f so you might try:

cat file1 file2 file3 | psql -1 -f - ...

Alternately, since -1 basically wraps your input in a BEGIN...your
statements...COMMIT you could do that yourself with a begin.sql and
commit.sql:

cat begin.sql file1.sql file2.sql ... commit.sql | psql ...

Cheers,
Steve


pgsql-general by date:

Previous
From: Jay Levitt
Date:
Subject: psql -1 with multiple files?
Next
From: Jay Levitt
Date:
Subject: Re: psql -1 with multiple files?