Re: pg_restore error

From: Adam Witney <awitney(at)sghms(dot)ac(dot)uk>
To: pascal b=?ISO-8859-1?B?6Q==?=rest <lists(at)magnetophone(dot)com>, pgsql-general <pgsql-general(at)postgresql(dot)org>
Subject: Re: pg_restore error
Date: 2002-10-10 12:38:58
Message-ID: B9CB3372.9448%a.witney@sghms.ac.uk
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On 10/10/02 1:25 pm, "pascal bérest" <lists(at)magnetophone(dot)com> wrote:

>> Are you sure the synd_article table and cable_id_cable_seq sequence aren't
>> already in the database?
>
> yes, there are existing.
>
>> Presumably your dump file contains the create statements for these two
>> objects and so the pg_restore is trying to create them.
>>
>> How did you create the dump file? The -a switch will allow you to dump only
>> the data if that's what you need. Looks like you may be dumping the schema
>> as well
>
> I tried with the -a option, and it was quite the same.
> I just tried to delete the synd_article_pkey then restore the table
> synd_article, but it didn't recreate the keys as they were. and i
> don't know how to do that (as i am using mysql for my other projects
> and that it seams to be more simple).
>

What happened when you tried the -a option?

You can create a table with a primary key like so

CREATE TABLE test (
id int,
PRIMARY KEY (id)
);

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Robert Treat 2002-10-10 12:42:32 Re: deny access to system tables
Previous Message Martijn van Oosterhout 2002-10-10 12:35:08 Re: deny access to system tables