Re: data dictionary?

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: data dictionary?
Дата
Msg-id 6990.971919600@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: data dictionary?  (Beth Gatewood <bethg@mbt.washington.edu>)
Ответы changing data type  (Chris <csmith@squiz.net>)
Список pgsql-novice
Beth Gatewood <bethg@mbt.washington.edu> writes:
> I would really like to write some code that would be able to query any
> database, grab out the tables and then do a row count on each table.
> Obviously I could do this by hand, singly executing \dt but this will
> be taking a long time.

psql's backslash commands don't do anything you couldn't do for
yourself.  To see what they're doing, start psql with -E switch to
make it echo the SQL commands it's sending.

One thing you do have to watch out for is that details of the system
catalogs tend to change from release to release, so if you do anything
too fancy you might find it broken at some point in the future...

            regards, tom lane

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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: Stupid question: concatenating strings
Следующее
От: Chris
Дата:
Сообщение: changing data type