Re: pg_dump not dumping some schemas

From: "Guo, Yun" <YGuo(at)cvent(dot)com>
To: Albe Laurenz <laurenz(dot)albe(at)wien(dot)gv(dot)at>, "pgsql-admin(at)postgresql(dot)org" <pgsql-admin(at)postgresql(dot)org>
Subject: Re: pg_dump not dumping some schemas
Date: 2015-05-29 13:23:42
Message-ID: D18DE04B.36C72%yguo@cvent.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

I tried again. It¹s still not dumping CREATE SCHEMA. And weirdly it would
work for some other schemas in the same database.

-bash-4.1$ pg_dump -s -n test polling_etl | grep 'CREATE SCHEMA'
-bash-4.1$ pg_dump -s -n test2 polling_etl | grep 'CREATE SCHEMA'
CREATE SCHEMA test2;

On 5/29/15, 4:06 AM, "Albe Laurenz" <laurenz(dot)albe(at)wien(dot)gv(dot)at> wrote:

>Yun Guo wrote:
>> I use this command to dump schema:
>> pg_dump -s -n test polling_etl > file.sql
>>
>> However, the file.sql file includes creation of all the objects in
>>schema test, but not the creation
>> of test schema itself.
>> I executed pg_dump as postgres user, the server and pg_dump are version
>>9.3.5. I suspect it¹s missing
>> some permissions, but not able to figure out what permissions are
>>missing. Below is the permission on
>> test schema:
>>
>> polling_etl=# \dn+ test
>> List of schemas
>> Name | Owner | Access privileges | Description
>> ------+-------+-------------------+-------------
>> test | test | test=UC/test +|
>> | | pb_writer=UC/test+|
>> | | =U/test +|
>> | | postgres=U*C/test |
>>
>
>It works on my 9.3.6 database:
>
>$ pg_dump -p 1235 -s -n laurenz test|grep 'CREATE SCHEMA'
>CREATE SCHEMA laurenz;
>
>You don't need any permissions to dump a schema, everybody can read the
>information.
>
>Could you double check with a "grep" or so that there is indeed no CREATE
>SCHEMA
>in your dump?
>
>Yours,
>Laurenz Albe

In response to

Responses

Browse pgsql-admin by date

  From Date Subject
Next Message danny 2015-05-29 18:13:15 Warning when connecting from PSQL Command
Previous Message Albe Laurenz 2015-05-29 08:06:57 Re: pg_dump not dumping some schemas