Re: Re: pg_dump and LOs (another proposal) - Mailing list pgsql-hackers

From Philip Warner
Subject Re: Re: pg_dump and LOs (another proposal)
Date
Msg-id 3.0.5.32.20000706150223.01ddc890@mail.rhyme.com.au
Whole thread Raw
In response to Re: Re: pg_dump and LOs (another proposal)  (Tom Lane <tgl@sss.pgh.pa.us>)
Responses Re: Re: pg_dump and LOs (another proposal)  (Tom Lane <tgl@sss.pgh.pa.us>)
List 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 by date:

Previous
From: rsand@vgalleries.com (Richard Sand)
Date:
Subject: Re: Lessons learned on how to build 7.0.2 on AIX 4.x
Next
From: Philip Warner
Date:
Subject: Re: 2nd update on TOAST