Andrew Edson <[EMAIL PROTECTED]> writes: > I am aware of this, yes, but the data in question is all (both sets) > contained on a single table. That's why I was looking for a way to do a > 'dump where (select foo where bar = 'criteria')' structure.
pg_dump is not in the business of editorializing on your data. However, as of 8.2 there is COPY (SELECT ...) TO ... which might serve your purpose. If you're on an older release I think it's temporary table time. regards, tom lane ---------------------------(end of broadcast)--------------------------- TIP 1: if posting/reading through Usenet, please send an appropriate subscribe-nomail command to [EMAIL PROTECTED] so that your message can get through to the mailing list cleanly