Re: IF EXISTS

From: Jaime Casanova <systemguards(at)gmail(dot)com>
To: "P(dot)M" <pmdanger(at)yahoo(dot)com>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: IF EXISTS
Date: 2005-11-14 21:51:51
Message-ID: c2d9e70e0511141351m6f526bbcw93e5895ad54ef8c@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On 11/14/05, P.M <pmdanger(at)yahoo(dot)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";
>
> thanks a lot,
> Maileen
>
>

something in shell is fine?

---------SCRIPT BEGIN HERE ------------
#!/bin/sh

psql template1 -A -t -c "SELECT datname FROM pg_database WHERE
datname = 'test'" | while read D ; do
dropdb test
# or you can do
# psql template1 -c "DROP DATABASE test"
# whatever you feel comfortable with
done

createdb test
---------SCRIPT END HERE ------------

--
regards,
Jaime Casanova
(DBA: DataBase Aniquilator ;)

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Scott Marlowe 2005-11-14 21:57:27 Re: 3 x PostgreSQL in cluster/redunant
Previous Message Bruno Wolff III 2005-11-14 21:35:34 Re: IF EXISTS