Re: database row count

Поиск
Список
Период
Сортировка
От Carol Cheung
Тема Re: database row count
Дата
Msg-id 47A0E8B5.2020404@consumercontact.com
обсуждение исходный текст
Ответ на database row count  (Isaac Vetter <ivetter@math.purdue.edu>)
Ответы Re: database row count  ("Jonah H. Harris" <jonah.harris@gmail.com>)
Список pgsql-novice
On 30/01/2008 15:10, Isaac Vetter wrote the following:
> Dear Pg experts;
>
> I'd like to get a (rough) count of the numbers of rows across all tables
> in a given database.
>
> I understand that I could write a script to run count(*) on each table
> and then sum the counts. Is there an easier way, has someone already
> written this script?
>
> Much Thanks,
>
> Isaac Vetter

How about

SELECT relname, reltuples FROM pg_class WHERE relname IN (...);

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

Предыдущее
От: Isaac Vetter
Дата:
Сообщение: database row count
Следующее
От: "Jonah H. Harris"
Дата:
Сообщение: Re: database row count