Re: maximum number of triggers on a table?

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Stephan Szabo <sszabo(at)megazone23(dot)bigpanda(dot)com>
Cc: Derek Spencer <derek(at)spencerogne(dot)com>, pgsql-general(at)postgresql(dot)org
Subject: Re: maximum number of triggers on a table?
Date: 2002-10-30 18:39:26
Message-ID: 410.1036003166@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Stephan Szabo <sszabo(at)megazone23(dot)bigpanda(dot)com> writes:
>> I have a table with 36 triggers and upon adding another trigger
>> (really a foreign key reference) the alter table query hangs and
>> doesn't return...

> I don't know of a trigger limit, but does this table have data in it?
> It's possible that the alter table is being slow in checking the initial
> state of the constraint.

I'm wondering if the ALTER is waiting to acquire lock on the referenced
table (it will need exclusive lock to add the trigger). If some open
transaction has used the referenced table and is now sitting around
without committing, it would cause the above behavior.

regards, tom lane

In response to

Browse pgsql-general by date

  From Date Subject
Next Message st_mwilson 2002-10-30 18:41:21 Oracle 8.1.x to Postgresql Conversion.
Previous Message Medi Montaseri 2002-10-30 18:35:59 Re: Stream data into Postgres via Perl