Re: IF EXISTS - Mailing list pgsql-general

From Bruno Wolff III
Subject Re: IF EXISTS
Date
Msg-id 20051114213534.GB6003@wolff.to
Whole thread Raw
In response to IF EXISTS  ("P.M" <pmdanger@yahoo.com>)
List pgsql-general
On Mon, Nov 14, 2005 at 13:20:59 -0800,
  "P.M" <pmdanger@yahoo.com> wrote:
> Hi,
>
> I would like to know if "IF EXISTS" exists under
> postgresql ?
> because i did not find it.
>
> before to create users or database, i would like to be
> sure that they do not exist already.
>
> so how can i test it and do something like :
>
> IF EXISTS database "test" DROP database "test";

I don't believe there is a feature like that for users (roles) or databases.
The normal thing to do would be to have the application try to delete the
object and ignore the problem if things fail. If this is happening in a larger
transaction that you don't want rolled back, then you can use savepoints.

pgsql-general by date:

Previous
From: "P.M"
Date:
Subject: IF EXISTS
Next
From: Michelle Konzack
Date:
Subject: 3 x PostgreSQL in cluster/redunant