Re: pg_restore error

From: Giles Lean <giles(at)nemeton(dot)com(dot)au>
To: "Curtis Mortensen" <shakiro2(at)yahoo(dot)com>
Cc: pgsql-novice(at)postgresql(dot)org
Subject: Re: pg_restore error
Date: 2002-09-07 02:34:09
Message-ID: 23718.1031366049@nemeton.com.au
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice


Hi Curtis,

> thanks for the advice. i now have a different error. :(

I suspected you would, but without knowing the commands you were using
decided guessing would only be confusing! Only the archive formats
from pg_dump are intended to be used with pg_restore. The default
output can be restored by psql:

$ pg_dump fubar > fubar.sql
$ createdb fubar2
CREATE DATABASE
$ psql fubar2 < fubar.sql
You are now connected as new user giles.
CREATE
$

$ pg_dump --format=c fubar > fubar.dump
$ createdb fubar2
CREATE DATABASE
$ pg_restore --dbname=fubar2 < fubar.dump
pg_restore: [archiver] WARNING:
Data restoration may fail because existing triggers cannot be disabled
(no superuser user name specified). This is only a problem when
restoring into a database with already existing triggers.
$

Regards,

Giles

Browse pgsql-novice by date

  From Date Subject
Next Message torres montaes manuel eduardo 2002-09-07 06:13:31 Kdevelop and libpq++
Previous Message Giles Lean 2002-09-06 22:50:11 Re: pg_restore error