Re: Dump and Restore in postgresql-8.3.6-1PGDG

Lists: pgsql-bugs
From: "suresh adapa" <suresha(at)collab(dot)net>
To: <pgsql-bugs(at)postgresql(dot)org>
Cc: <heikki(dot)linnakangas(at)enterprisedb(dot)com>
Subject: Dump and Restore in postgresql-8.3.6-1PGDG
Date: 2010-04-15 14:33:34
Message-ID: 0213965108DEAD48960CE83455E07DFF0234BC84@maa-exchmb.maa.corp.collab.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-bugs

I am on Linux using postgresql-8.3.6-1PGDG

Taking Dump using

=================

export PGPASSWORD=suresha && pg_dump -b -c -C --format=c -h localhost -p
5432 -U suresha -f /tmp/dump/db/suresha.sql suresha

Trying to Restore the same like

=======================

[root(at)cu018 scripts]# pg_restore -c --format=c -h localhost -p 5432 -U
suresha -d suresha /tmp/dump/db/suresha.sql

Password:

pg_restore: [archiver (db)] Error while PROCESSING TOC:

pg_restore: [archiver (db)] Error from TOC entry 6; 2615 2200 SCHEMA
public postgres

pg_restore: [archiver (db)] could not execute query: ERROR: must be
owner of schema public

Command was: DROP SCHEMA public;

pg_restore: [archiver (db)] could not execute query: ERROR: schema
"public" already exists

Command was: CREATE SCHEMA public;

pg_restore: [archiver (db)] Error from TOC entry 2663; 0 0 COMMENT
SCHEMA public postgres

pg_restore: [archiver (db)] could not execute query: ERROR: must be
owner of schema public

Command was: COMMENT ON SCHEMA public IS 'standard public schema';

pg_restore: WARNING: no privileges could be revoked for "public"

pg_restore: WARNING: no privileges could be revoked for "public"

pg_restore: WARNING: no privileges were granted for "public"

pg_restore: WARNING: no privileges were granted for "public"

WARNING: errors ignored on restore: 3

Wondering how can I suppress the Error and other messages seen above.

Thanks

SureshA


From: Scott Mead <scott(dot)lists(at)enterprisedb(dot)com>
To: suresh adapa <suresha(at)collab(dot)net>
Cc: pgsql-bugs(at)postgresql(dot)org, heikki(dot)linnakangas(at)enterprisedb(dot)com
Subject: Re: Dump and Restore in postgresql-8.3.6-1PGDG
Date: 2010-04-15 16:47:19
Message-ID: q2md3ab2ec81004150947l5640b044ua6f27468f84d067@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-bugs

On Thu, Apr 15, 2010 at 10:33 AM, suresh adapa <suresha(at)collab(dot)net> wrote:

>
>
> I am on Linux using postgresql-8.3.6-1PGDG
>
>
>
> Taking Dump using
>
> =================
>
> export PGPASSWORD=suresha && pg_dump -b -c -C --format=c -h localhost -p
> 5432 -U suresha -f /tmp/dump/db/suresha.sql suresha
>
>
>
> Trying to Restore the same like
>
> =======================
>
> [root(at)cu018 scripts]# pg_restore -c --format=c -h localhost -p 5432 -U
> suresha -d suresha /tmp/dump/db/suresha.sql
>
> Password:
>
> pg_restore: [archiver (db)] Error while PROCESSING TOC:
>
> pg_restore: [archiver (db)] Error from TOC entry 6; 2615 2200 SCHEMA public
> postgres
>
> pg_restore: [archiver (db)] could not execute query: ERROR: must be owner
> of schema public
>
> Command was: DROP SCHEMA public;
>
> pg_restore: [archiver (db)] could not execute query: ERROR: schema
> "public" already exists
>
> Command was: CREATE SCHEMA public;
>
> pg_restore: [archiver (db)] Error from TOC entry 2663; 0 0 COMMENT SCHEMA
> public postgres
>
> pg_restore: [archiver (db)] could not execute query: ERROR: must be owner
> of schema public
>
> Command was: COMMENT ON SCHEMA public IS 'standard public schema';
>
> pg_restore: WARNING: no privileges could be revoked for "public"
>
> pg_restore: WARNING: no privileges could be revoked for "public"
>
> pg_restore: WARNING: no privileges were granted for "public"
>
> pg_restore: WARNING: no privileges were granted for "public"
>
> WARNING: errors ignored on restore: 3
>
>
>
> Wondering how can I suppress the Error and other messages seen above.
>

This is because you're restoring into the same database that you backed up
from. I recommend creating a new database 'suresha_new'

Then, restore into that new database. Once you've restored, you can:

ALTER DATABASE suresha RENAME TO suresha_orig;

ALTER DATABASE suresha_new RENAME TO suresha;

--Scott

>
>
>
>
> Thanks
>
> SureshA
>


From: Scott Mead <scott(dot)lists(at)enterprisedb(dot)com>
To: suresh adapa <suresha(at)collab(dot)net>
Cc: pgsql-bugs(at)postgresql(dot)org, heikki(dot)linnakangas(at)enterprisedb(dot)com
Subject: Re: Dump and Restore in postgresql-8.3.6-1PGDG
Date: 2010-04-15 16:48:05
Message-ID: o2od3ab2ec81004150948y3b443774ye602f70493e06e6b@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-bugs

On Thu, Apr 15, 2010 at 12:47 PM, Scott Mead
<scott(dot)lists(at)enterprisedb(dot)com>wrote:

> On Thu, Apr 15, 2010 at 10:33 AM, suresh adapa <suresha(at)collab(dot)net> wrote:
>
>>
>>
>> I am on Linux using postgresql-8.3.6-1PGDG
>>
>>
>>
>> Taking Dump using
>>
>> =================
>>
>> export PGPASSWORD=suresha && pg_dump -b -c -C --format=c -h localhost -p
>> 5432 -U suresha -f /tmp/dump/db/suresha.sql suresha
>>
>>
>>
>> Trying to Restore the same like
>>
>> =======================
>>
>> [root(at)cu018 scripts]# pg_restore -c --format=c -h localhost -p 5432 -U
>> suresha -d suresha /tmp/dump/db/suresha.sql
>>
>> Password:
>>
>> pg_restore: [archiver (db)] Error while PROCESSING TOC:
>>
>> pg_restore: [archiver (db)] Error from TOC entry 6; 2615 2200 SCHEMA
>> public postgres
>>
>> pg_restore: [archiver (db)] could not execute query: ERROR: must be owner
>> of schema public
>>
>> Command was: DROP SCHEMA public;
>>
>> pg_restore: [archiver (db)] could not execute query: ERROR: schema
>> "public" already exists
>>
>> Command was: CREATE SCHEMA public;
>>
>> pg_restore: [archiver (db)] Error from TOC entry 2663; 0 0 COMMENT SCHEMA
>> public postgres
>>
>> pg_restore: [archiver (db)] could not execute query: ERROR: must be owner
>> of schema public
>>
>> Command was: COMMENT ON SCHEMA public IS 'standard public schema';
>>
>> pg_restore: WARNING: no privileges could be revoked for "public"
>>
>> pg_restore: WARNING: no privileges could be revoked for "public"
>>
>> pg_restore: WARNING: no privileges were granted for "public"
>>
>> pg_restore: WARNING: no privileges were granted for "public"
>>
>> WARNING: errors ignored on restore: 3
>>
>>
>>
>> Wondering how can I suppress the Error and other messages seen above.
>>
>
>
> This is because you're restoring into the same database that you backed up
> from. I recommend creating a new database 'suresha_new'
>
> Then, restore into that new database. Once you've restored, you can:
>
>
> ALTER DATABASE suresha RENAME TO suresha_orig;
>
> ALTER DATABASE suresha_new RENAME TO suresha;
>
> --Scott
>

BTW -- THis is not a bug, you should have posted to the -general or -admin
list, not the -bugs list.

--Scott

>
>>
>>
>>
>> Thanks
>>
>> SureshA
>>
>
>