Re: Pg_Restore with --clean option

From: Peter Eisentraut <peter_e(at)gmx(dot)net>
To: Jyoti Seth <jyotiseth2001(at)gmail(dot)com>
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: Pg_Restore with --clean option
Date: 2009-10-01 06:05:53
Message-ID: 1254377153.30588.2.camel@fsopti579.F-Secure.com
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-sql

On Wed, 2009-09-30 at 22:14 -0700, Jyoti Seth wrote:
> I want to restore data of a single table. Before restoring the data I
> disabled all the triggers and constraints on that table. I used the restore
> command with --clean option so that data gets deleted from that table and
> then fresh data get inserted.

--clean drops the tables, not the data.

> But this is throwing error: duplicate key value violates unique constraint.
>
> How can I restore the data to a table that already has data?

Well, you could just not use --clean, which would insert the data into
existing tables. But if you have conflicting data in your tables, you
need a more elaborate scheme, depending on how exactly you plan to
resolve those conflicts.

I think you might be a bit confused about the proper workflow with
pg_dump and pg_restore and therefore are not giving us accurate
information. Perhaps some more detail would help.

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Shruthi A 2009-10-01 06:19:53 Can i customize null-padding for outer joins?
Previous Message Jyoti Seth 2009-10-01 05:14:41 Pg_Restore with --clean option