Error handling: Resume work after error

From: Raul Kaubi <raulkaubi(at)gmail(dot)com>
To: Postgres General <pgsql-general(at)postgresql(dot)org>
Subject: Error handling: Resume work after error
Date: 2020-02-05 14:17:09
Message-ID: CAO_+3-CKzP_hwuWqVx+-s1DXT4SzX-ohMd48QuziE0P1KQGCxQ@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Hi

PostgreSQL 12.1

Let's say I want my procedure/function to resume work after specific error
( duplicate_table ).
Is it possible to resume work after error..?

EXCEPTION
> WHEN duplicate_table then ......;

Or is there different approach to achieve that..?

Thanks
Raul

Responses

Browse pgsql-general by date

  From Date Subject
Next Message hubert depesz lubaczewski 2020-02-05 15:03:50 Re: Error handling: Resume work after error
Previous Message Raul Kaubi 2020-02-05 14:02:04 Re: Declare variable from other variable