Re: Calculation of db size

Поиск
Список
Период
Сортировка
От Andrew Gierth
Тема Re: Calculation of db size
Дата
Msg-id 87fttm3xlm.fsf@news-spur.riddles.org.uk
обсуждение исходный текст
Ответ на Calculation of db size  (Horst Düster <horst.duester@sourcepole.ch>)
Список pgsql-admin
>>>>> "Horst" == Horst Düster <horst.duester@sourcepole.ch> writes:

 Horst> Then I have a subsequent question.

 Horst> Does the query

 Horst> SELECT g_database_size('dbname');

 Horst> take into account the storage space of the table pg_shdepend or
 Horst> not?

It does not. Nor does it include the other global tables, such as
pg_database, pg_authid, etc. To get the list of global tables and their
indexes, use:

select relname from pg_class where relisshared;

The size of the global tables and indexes, which don't count towards the
size of any individual database, can be obtained with
pg_tablespace_size('pg_global'). (All global tables must be in the
pg_global tablespace, and no other tables are allowed there.)

--
Andrew (irc:RhodiumToad)


В списке pgsql-admin по дате отправления:

Предыдущее
От: Horst Düster
Дата:
Сообщение: Calculation of db size
Следующее
От: Shreeyansh Dba
Дата:
Сообщение: Re: Calculation of db size