Re: Dump all except some tables?

From: WireSpot <wirespot(at)gmail(dot)com>
To: pgsql-general(at)postgresql(dot)org
Subject: Re: Dump all except some tables?
Date: 2005-10-06 12:29:50
Message-ID: b2d4b0380510060529o5202c6c8i2e77231deca492d3@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On 10/6/05, A. Kretschmer <akretschmer(at)despammed(dot)com> wrote:
> am 06.10.2005, um 13:59:44 +0300 mailte WireSpot folgendes:
> > Is it possible to dump an entire database but to skip one or two tables? Or,
> > conversely, to restore an entire dump except for one or two tables?
> > (Although I'd prefer the first version.)
> >
> > The only related option for both pg_dump and pg_restore is --table, which
> > only takes 1 (one) table name. If only it accepted more than one I could've
> > found a workaround.
>
> You can use the -t more than once.
>
> pg_dump -U foobar database -t foo -t foo1

Yes, pg_dump doesn't complain. But it only takes the first one into
consideration. I only get one table in the dump.

> > I'm considering doing a dump with --table for each table except the one or
> > two in question. But I wonder, if I simply concatenate the resulting SQL
> > dumps, will I get a valid dump? There are all kinds of foreign key
>
> I'm not sure, perhaps if you dump with --data-only every table.
>
> > contraints in place, and if the table data is not fed back in the right
> > order it's useless.
>
> Right.
>
> You can do a dump from all tables and after restore all the tables you
> can delete the one or two tables.

That's exactly what I'm trying to avoid. If possible, I wanted to
avoid having to dump them at all. We're talking a lot of logging data
that is of no use where the dump is going.

> Other way:
>
> pg_restore with '--use-list=list-file'. You can create a list of
> contents of the archive and edit this list. (pg_restore --list)

Interesting, I'll look into it. If mangling the restore list works, it
would solve the problem halfway (at the restoring moment).

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Chris Browne 2005-10-06 12:57:11 Re: PostgreSQL 8.1 vs. MySQL 5.0?
Previous Message Bohdan Linda 2005-10-06 12:23:01 Re: Securing Postgres