Re: Triggers

Поиск
Список
Период
Сортировка
От Olivier Thauvin
Тема Re: Triggers
Дата
Msg-id 200504171526.24089.olivier.thauvin@aerov.jussieu.fr
обсуждение исходный текст
Ответ на Triggers  (Steve Tucknott <steve@retsol.co.uk>)
Ответы Re: Triggers  (Steve Tucknott <steve@retsol.co.uk>)
Список pgsql-novice
Le Sunday 17 April 2005 15:21, vous avez écrit :
> PostrgreSQL 7.4.5
>
> Stupid question - how do you see triggers? I have created various
> triggers but I can't see how to list them (I think I've seen them
> somewhere before but can't think where).
> Is the only location pg_trigger? I though there was a '\' command in
> psql.....

\d TABLE

At the end, if the table have a trigger, it is show, like here (in french
sorry):

rpm2sql=# \d rpm
                                      Table «public.rpm»
  Colonne   |           Type           |                    Modificateurs
------------+--------------------------+------------------------------------------------------
 key        | integer                  | not null default
nextval('public.rpm_key_seq'::text)
[...]
Index :
    «rpm_pkey» PRIMARY KEY, btree ("key")
[...]
Contraintes de clés secondaires :
    «rpm_pathkey_fkey» FOREIGN KEY (pathkey) REFERENCES path("key")
Déclencheurs :
    reapheader AFTER DELETE OR UPDATE ON rpm FOR EACH ROW EXECUTE PROCEDURE
reapheader()

The last line is a trigger.

Вложения

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

Предыдущее
От: Steve Tucknott
Дата:
Сообщение: Triggers
Следующее
От: Steve Tucknott
Дата:
Сообщение: Re: Triggers