Re: probelm with alter table add constraint......

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: probelm with alter table add constraint......
Дата
Msg-id 27085.1239026040@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: probelm with alter table add constraint......  ("Albe Laurenz" <laurenz.albe@wien.gv.at>)
Ответы Re: probelm with alter table add constraint......  (roopabenzer <roopabenzer@gmail.com>)
Список pgsql-performance
"Albe Laurenz" <laurenz.albe@wien.gv.at> writes:
> roopasatish wrote:
>> I have an issue with the add foreign key constraint which
>> goes for waiting and locks other queries as well.
>>
>> ALTER TABLE ONLY holding_positions ADD CONSTRAINT
>> holding_positions_stock_id_fkey FOREIGN KEY (stock_id)
>> REFERENCES stocks (stock_id) MATCH SIMPLE
>> ON UPDATE NO ACTION ON DELETE NO ACTION;
>>
>> The holding_positions table has no data in it as yet.

> Look in pg_catalog.pg_locks for a second transaction that
> holds a lock on the table holding_positions.

This statement also needs to get lock on the referenced table "stocks".
An open transaction that's referenced either table will block it.

            regards, tom lane

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

Предыдущее
От: Matthew Wakeling
Дата:
Сообщение: Re: plpgsql arrays
Следующее
От: Scott Marlowe
Дата:
Сообщение: Re: Forcing seq_scan off for large table joined with tiny table yeilds improved performance