Re: Does psql -f quit insertion after an error in a statement has been detected?

From: John R Pierce <pierce(at)hogranch(dot)com>
To: "pgsql-general(at)postgresql(dot)org" <pgsql-general(at)postgresql(dot)org>
Subject: Re: Does psql -f quit insertion after an error in a statement has been detected?
Date: 2010-06-06 21:59:22
Message-ID: 4C0C1A3A.60504@hogranch.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Wang, Mary Y wrote:
> Hi,
>
> I'm using a psql -f command to reload the data from a dump file. I noticed that some tables are not populated with any rows (I mean 0 rows), yet, if I manually insert a row (actually just copy an INSERT statement from that input file) in the interactive terminal, that row was added with no problem. So my question "does psql -f quits inserting rows for a table when it detects there is an error in a statement?". The impression that I got is that even though other rows might not have any errors, but psql -f seems just quits after it detects an error in a row.
>
> Am I missing something here?
>

if the inserts are in a transaction (eg, after a BEGIN), any error will
cause the entire transaction to rollback and the rest of the transaction
to be 'flushed' until a ROLLBACK or COMMIT statement ends the
transaction block.

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Zery 2010-06-07 00:34:42 WINDOWS : PostgreSQL 8.4 Server Start Error
Previous Message Wang, Mary Y 2010-06-06 21:29:00 Does psql -f quit insertion after an error in a statement has been detected?