Re: checking if sequence exists

Поиск
Список
Период
Сортировка
От Thara Vadakkeveedu
Тема Re: checking if sequence exists
Дата
Msg-id 1384544163.79352.YahooMailNeo@web125002.mail.ne1.yahoo.com
обсуждение исходный текст
Ответ на Re: checking if sequence exists  (Thara Vadakkeveedu <tharagv@yahoo.com>)
Ответы Re: checking if sequence exists  (Kevin Grittner <kgrittn@ymail.com>)
Список pgsql-admin
I tried this from pg_admin, but I get a syntax error (unexpected character)
 
IF EXISTS (SELECT 0 FROM pg_class
             WHERE relkind = 'S'
               AND oid::regclass::text = 'public.' || quote_ident('hibernate_sequence'))
  THEN
    RAISE EXCEPTION 'sequence public.% already exists!', 'hibernate_sequence
ENF IF;
 
Thanks.
From: Thara Vadakkeveedu <tharagv@yahoo.com>
To: "pgsql-admin@postgresql.org" <pgsql-admin@postgresql.org>
Sent: Friday, November 15, 2013 2:30 PM
Subject: Re: [ADMIN] checking if sequence exists

How can we find out if a particular sequence exists ? The idea is to check if sequence first and if it does not exist then create it...the goal is to do this when we deploy the application war...
thanks
tg

 


В списке pgsql-admin по дате отправления:

Предыдущее
От: Thara Vadakkeveedu
Дата:
Сообщение: Re: checking if sequence exists
Следующее
От: Elliot
Дата:
Сообщение: Re: checking if sequence exists