pg_dump trouble

From: gauthier lawny <gauthier_lawny(at)yahoo(dot)fr>
To: pgsql-admin(at)postgresql(dot)org
Subject: pg_dump trouble
Date: 2004-09-24 12:33:59
Message-ID: 20040924123359.77475.qmail@web42007.mail.yahoo.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

Here is the trouble I encountered.

I got 2 tables like
create table mytable(idnop serial, other varchar,
primary key (idnop));
create table reftable(idnop integer references
mytable, primary key (idnop));

pgsql create implicitly a sequence to handle the idnop
serial.
I perfomed some insertions into the 2 tables, no
problem.
Afterthat I run pg_dump with -D option (insert into
(colomn, ...) values (...);
The trouble is when it dumps the sequence. Instead of
dumping the current value (which is the last used for
an insertion into mytable) it dumps the value 1.
Obviously when I restore the data and I try to perform
an other insertion into mytable it fails because of
the primary key violation.

The presence of -D option doesn't have any effect on
the result.



Vous manquez d’espace pour stocker vos mails ?
Yahoo! Mail vous offre GRATUITEMENT 100 Mo !
Créez votre Yahoo! Mail sur http://fr.benefits.yahoo.com/

Le nouveau Yahoo! Messenger est arrivé ! Découvrez toutes les nouveautés pour dialoguer instantanément avec vos amis. A télécharger gratuitement sur http://fr.messenger.yahoo.com

Responses

Browse pgsql-admin by date

  From Date Subject
Next Message Manolatos Tilemahos 2004-09-24 12:47:09 How to pass initdb LC_COLLATE & locale parameters when using wind ows? (with or without pginstaller)
Previous Message Iulia Pacurar 2004-09-24 06:36:43 log file for pg_autovacuum