Re: Reading storage parameters - Mailing list pgsql-general

From Daniele Varrazzo
Subject Re: Reading storage parameters
Date
Msg-id CA+mi_8bT8C8f4VxEd3j3RV=gGhCcM8UebSFdi-1VZ+D_6z5p7g@mail.gmail.com
Whole thread Raw
In response to Re: Reading storage parameters  (Thom Brown <thom@linux.com>)
List pgsql-general
On Thu, Jun 21, 2012 at 1:26 PM, Thom Brown <thom@linux.com> wrote:
> On 21 June 2012 13:12, Daniele Varrazzo <daniele.varrazzo@gmail.com> wrote:
>> Hello,
>>
>> is there a way to read the storage parameters values set on a table
>> (i.e. what set with ALTER TABLE foo SET (autovacuum_enabled=false) and
>> so on...)? I can't find it in the docs.
>
> SELECT c.reloptions
> FROM pg_class c
> INNER JOIN pg_namespace n
>  ON c.relnamespace = n.oid
> WHERE c.relname = 'tablename'
> AND n.nspname = 'schemaname';

Ok, so they are in pg_class.reloptions, thank you!

-- Daniele

pgsql-general by date:

Previous
From: Raghavendra
Date:
Subject: Re: Reading storage parameters
Next
From: Evan Martin
Date:
Subject: Re: Please make it easy to drop a database that is in use