Re: Reading storage parameters

Поиск
Список
Период
Сортировка
От Daniele Varrazzo
Тема Re: Reading storage parameters
Дата
Msg-id CA+mi_8bT8C8f4VxEd3j3RV=gGhCcM8UebSFdi-1VZ+D_6z5p7g@mail.gmail.com
обсуждение исходный текст
Ответ на Re: Reading storage parameters  (Thom Brown <thom@linux.com>)
Список 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 по дате отправления:

Предыдущее
От: Raghavendra
Дата:
Сообщение: Re: Reading storage parameters
Следующее
От: Evan Martin
Дата:
Сообщение: Re: Please make it easy to drop a database that is in use