Re: Rule for all the tables in a schema

Поиск
Список
Период
Сортировка
От Sergey Konoplev
Тема Re: Rule for all the tables in a schema
Дата
Msg-id CAL_0b1tg5u-4iqh7B2X7NQUVr7FEwjb+58MoLqtR0UUNyoPk4w@mail.gmail.com
обсуждение исходный текст
Ответ на Rule for all the tables in a schema  (Sajeev Mayandi <Sajeev_Mayandi@symantec.com>)
Ответы Re: Rule for all the tables in a schema  (Chris Travers <chris.travers@gmail.com>)
Список pgsql-general
On Wed, May 22, 2013 at 10:34 PM, Sajeev Mayandi
<Sajeev_Mayandi@symantec.com> wrote:
> Is there a way, I can say create a rule for all the tables in an schema?
> This will avoid writing complicated functions.

You can use DO block if your postgres version is >=9.0.

DO $$
DECLARE _tablename text
BEGIN
    FOR
        SELECT INTO _tablename tablename
        FROM pg_tables WHERE schemaname = 'schemaname'
    LOOP
        EXECUTE 'CREATE RULE ... TO $1 ...' USING _tablename;
    END LOOP;
END $$;

For <9.0 you can use shell script with psql to do the same.

--
Kind regards,
Sergey Konoplev
PostgreSQL Consultant and DBA

Profile: http://www.linkedin.com/in/grayhemp
Phone: USA +1 (415) 867-9984, Russia +7 (901) 903-0499, +7 (988) 888-1979
Skype: gray-hemp
Jabber: gray.ru@gmail.com


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

Предыдущее
От: Sajeev Mayandi
Дата:
Сообщение: Rule for all the tables in a schema
Следующее
От: Chris Travers
Дата:
Сообщение: Re: Rule for all the tables in a schema