Re: pg_database_size(oid)

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: pg_database_size(oid)
Дата
Msg-id 28605.1266427001@sss.pgh.pa.us
обсуждение исходный текст
Ответ на pg_database_size(oid)  (Dhimant Patel <drp4kri@gmail.com>)
Список pgsql-general
Dhimant Patel <drp4kri@gmail.com> writes:
> I have created a database, which I plan to load with several tables. I am
> trying to find the size of the databases and came
> across pg_database_size(oid) function. Since it requires databse oid, I
> thought there must be a view where you get it - then came across
> "pg_database" table and still all in vain. The "pg_database" table lists all
> databases in the server but won't provide me the oid
> for pg_database_size().

What you lack is the knowledge that oid is a system column in these
tables, meaning it isn't displayed by "SELECT * FROM ...".  It's there
though and you can select it explicitly:
    select oid from pg_database where datname = 'foo';

http://www.postgresql.org/docs/8.4/static/ddl-system-columns.html

            regards, tom lane

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

Предыдущее
От: Dhimant Patel
Дата:
Сообщение: pg_database_size(oid)
Следующее
От: Reid Thompson
Дата:
Сообщение: Re: pg_database_size(oid)