Re: dictionary? - Mailing list pgsql-novice

From Tomeh, Husam
Subject Re: dictionary?
Date
Msg-id CB0FB369FF86E248A884BCC002562BCB0227DA38@pisgsna01sxch01.ana.firstamdata.com
Whole thread Raw
In response to dictionary?  (Ray Stell <stellr@cns.vt.edu>)
Responses Re: dictionary?
List pgsql-novice
You can query pg_tables, pg_indexes, etc.

    Select tablename from pg_tables where tablename like 'snapshot%' ;

These views are based on the pg_class system table.

To describe a table, just do  \d tablename.

--
  Husam
  http://firstdba.googlepages.com


-----Original Message-----
From: pgsql-novice-owner@postgresql.org
[mailto:pgsql-novice-owner@postgresql.org] On Behalf Of Ray Stell
Sent: Friday, September 22, 2006 12:16 PM
To: pgsql-novice@postgresql.org
Subject: [NOVICE] dictionary?

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;
...

TIA.

---------------------------(end of broadcast)---------------------------
TIP 3: Have you checked our extensive FAQ?

               http://www.postgresql.org/docs/faq
**********************************************************************
This message contains confidential information intended only for the use of the addressee(s) named above and may
containinformation that is legally privileged.  If you are not the addressee, or the person responsible for delivering
itto the addressee, you are hereby notified that reading, disseminating, distributing or copying this message is
strictlyprohibited.  If you have received this message by mistake, please immediately notify us by replying to the
messageand delete the original message immediately thereafter. 

Thank you.

                                   FADLD Tag
**********************************************************************


pgsql-novice by date:

Previous
From: Richard Broersma Jr
Date:
Subject: Re: dictionary?
Next
From: Richard Broersma Jr
Date:
Subject: Re: dictionary?