Re: db partial dumping with pg_dump - Mailing list pgsql-hackers

From Rod Taylor
Subject Re: db partial dumping with pg_dump
Date
Msg-id 1029240009.74400.9.camel@jester
Whole thread Raw
In response to db partial dumping with pg_dump  (Oleg Bartunov <oleg@sai.msu.su>)
Responses Re: db partial dumping with pg_dump  (Oleg Bartunov <oleg@sai.msu.su>)
List pgsql-hackers
On Tue, 2002-08-13 at 07:49, Oleg Bartunov wrote:
> We have a patch for pg_dump which adds a possibility to dump
> a part of table, for example:
> 
> dump Top.Science.Astronomy heirarchy from dmoz catalog
> 
> pg_dump -d -t dmoz -w "select * from dmoz where path <@ 'Top.Science.Astronomy'" dmoz
> 
> We found it's very useful. We'd like to extend it to use also with COPY
> but it has no support for select (of course it will works only for
> special case when ALL columns retrieved).
> 
> The question is: Is't worth to submit patch for pg_dump and look into
> copy code ?

I've been asked by co-workers for information on how to do this type of
thing.  They do partial table dumps to a development system for the
purpose of finding / eliminating bugs.

That said, it may be smart to make the 'select * from <table>' part
yourself, and let the user supply a where clause.




pgsql-hackers by date:

Previous
From: Rod Taylor
Date:
Subject: Re: anoncvs currently broken
Next
From: Oleg Bartunov
Date:
Subject: Re: db partial dumping with pg_dump