How can I stop a Postgres script when it encounters an error?

PostgresqlError HandlingPsql

Postgresql Problem Overview


Is there a way to specify that when executing a sql script it stops when encountering the first error on the script, it usually continues, regardless of previous errors.

Postgresql Solutions


Solution 1 - Postgresql

I think the solution to add following to .psqlrc is far from perfection

\set ON_ERROR_STOP on

there exists much more simple and convenient way - use psql with parameter:

psql -v ON_ERROR_STOP=1

better to use also -X parameter turning off .psqlrc file usage. Works perfectly for me

p.s. the solution found in great post from Peter Eisentraut. Thank you, Peter! http://petereisentraut.blogspot.com/2010/03/running-sql-scripts-with-psql.html

Solution 2 - Postgresql

I assume you are using psql, this might be handy to add to your ~/.psqlrc file.

\set ON_ERROR_STOP on

This will make it abort on the first error. If you don't have it, even with a transaction it will keep executing your script but fail on everything until the end of your script.

And you probably want to use a transaction as Paul said. Which also can be done with psql --single-transaction ... if you don't want to alter the script.

So a complete example, with ON_ERROR_STOP in your .psqlrc:

psql --single-transaction --file /your/script.sql

Solution 3 - Postgresql

It's not exactly what you want, but if you start your script with begin transaction; and end with end transaction;, it will actually skip everything after the first error, and then it will rollback everything it did before the error.

Solution 4 - Postgresql

I always like to reference the manual directly.

From the PostgreSQL Manual:

> Exit Status > > psql returns 0 to the shell if it finished normally, 1 if a fatal > error of its own occurs (e.g. out of memory, file not found), 2 if the > connection to the server went bad and the session was not interactive, > and 3 if an error occurred in a script and the variable > ON_ERROR_STOP was set.

By default if the sql code you are running on the PostgreSQL server error psql won't quit an error. It will catch the error and continue. If, as mentioned above, you set the ON_ERROR_STOP setting to on, when psql catches an error in the sql code it will exit and return 3 to the shell.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionRayView Question on Stackoverflow
Solution 1 - PostgresqlAlfisheView Answer on Stackoverflow
Solution 2 - PostgresqlplundraView Answer on Stackoverflow
Solution 3 - PostgresqlPaul TomblinView Answer on Stackoverflow
Solution 4 - PostgresqlGregory AreniusView Answer on Stackoverflow