Re: dictionary?

Поиск
Список
Период
Сортировка
От Richard Broersma Jr
Тема Re: dictionary?
Дата
Msg-id 20060922192850.10231.qmail@web31809.mail.mud.yahoo.com
обсуждение исходный текст
Ответ на dictionary?  (Ray Stell <stellr@cns.vt.edu>)
Список pgsql-novice
> How do you accomplish this in pg?
>
> 1. Is there a table like the Oracle dictionary?
> 2. Is there a way to describe a table?
>
> I use these all the time in oracle.  When I can't remember where
> some management metric is located in the system, I sort of grep for
> it based on a keyword.  For example, if I need to find out about some
> snapshot (copy of a table from another db), I do this:
>
>
> select table_name from dictionary where table_name like '%SNAPSHOT%';
>
> TABLE_NAME
> ------------------------------
> ALL_REGISTERED_SNAPSHOTS
> ALL_SNAPSHOTS
> ...
>
>
> SQL> describe ALL_SNAPSHOTS
>  Name                                      Null?    Type
>  ----------------------------------------- -------- ----------------------------
>  OWNER                                     NOT NULL VARCHAR2(30)
>  NAME                                      NOT NULL VARCHAR2(30)
>  TABLE_NAME                                NOT NULL VARCHAR2(30)
> ...
>
>
> select name from ALL_SNAPSHOTS;
> ...


How about:

\d tablename
\dt tablename

For more information check out the "Meta-Commands" from:
http://www.postgresql.org/docs/8.1/interactive/app-psql.html

Regards,

Richard Broersma Jr.

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

Предыдущее
От: Ray Stell
Дата:
Сообщение: dictionary?
Следующее
От: "Tomeh, Husam"
Дата:
Сообщение: Re: dictionary?