Re: Update in all tables

Поиск
Список
Период
Сортировка
От Scott Marlowe
Тема Re: Update in all tables
Дата
Msg-id 1140635530.5777.32.camel@state.g2switchworks.com
обсуждение исходный текст
Ответ на Update in all tables  (Judith <jaltamirano@correolux.com.mx>)
Список pgsql-sql
On Wed, 2006-02-22 at 12:08, Judith wrote:
>    Hello everybody I need to update a field with the same value in the 
> tables of my data base but this field exists in almost all tables and 
> has the same value, I don't want to code a script, so my question is if 
> there is some way to update that field with a query and affects all the 
> tables that contain the field?

Are those fields all dependent FK fields?  If so, then declaring those
foreign keys as on update cascade is all you need.

If they're not related that way, then you'll have to script it.

If you need them all to change at the same time (or all roll back in the
event of an update failure) then you can wrap the changes in a
transaction (begin/end pair) and it'll be atomic.


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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: 'locking' the SELECTs based on indices...
Следующее
От: Judith Altamirano Figueroa
Дата:
Сообщение: Update in all tables