Re: Re: pg_dump and LOs (another proposal)

Поиск
Список
Период
Сортировка
От Philip Warner
Тема Re: Re: pg_dump and LOs (another proposal)
Дата
Msg-id 3.0.5.32.20000706150223.01ddc890@mail.rhyme.com.au
обсуждение исходный текст
Ответ на Re: Re: pg_dump and LOs (another proposal)  (Tom Lane <tgl@sss.pgh.pa.us>)
Ответы Re: Re: pg_dump and LOs (another proposal)  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-hackers
At 13:06 5/07/00 -0400, Tom Lane wrote:
>
>    UPDATE userTable SET oidcolumn = tmptable.newLOoid WHERE
>        oidcolumn = tmptable.oldLOoid;
>

It's actually nastier than this since there could be multiple oid columns,
implying, potentially, multiple scans of the table.

I suppose

update userTable setoidCol1 = Coalesce( (Select newLOoid from oidxref where oldLOoid = oidCol1
), oidCol1 ),oidCol2 = Coalesce( (Select newLOoid from oidxref where oldLOoid = oidCol2
), oidCol2 ),...

would work, or at least only update each row once, but it looks slow.






----------------------------------------------------------------
Philip Warner                    |     __---_____
Albatross Consulting Pty. Ltd.   |----/       -  \
(A.C.N. 008 659 498)             |          /(@)   ______---_
Tel: (+61) 0500 83 82 81         |                 _________  \
Fax: (+61) 0500 83 82 82         |                 ___________ |
Http://www.rhyme.com.au          |                /           \|                                |    --________--
PGP key available upon request,  |  /
and from pgp5.ai.mit.edu:11371   |/


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

Предыдущее
От: rsand@vgalleries.com (Richard Sand)
Дата:
Сообщение: Re: Lessons learned on how to build 7.0.2 on AIX 4.x
Следующее
От: Philip Warner
Дата:
Сообщение: Re: 2nd update on TOAST