Re: listing all tables - Mailing list pgsql-general

From Michael Fuhr
Subject Re: listing all tables
Date
Msg-id 20050422040011.GA45531@winnie.fuhr.org
Whole thread Raw
In response to listing all tables  (Typing80wpm@aol.com)
List pgsql-general
On Thu, Apr 21, 2005 at 11:33:07PM -0400, Typing80wpm@aol.com wrote:
>
> My question is, what command can I issue to list all the tables in a
> database?

If you're using psql then you can use the \dt command, although that
will show only the tables in your search path (which is probably what
you're interested in).  See "Meta-Commands" in the psql documentation
for more info; see also the "System Catalogs" and "The Information
Schema" chapters.

http://www.postgresql.org/docs/8.0/interactive/app-psql.html
http://www.postgresql.org/docs/8.0/interactive/catalogs.html
http://www.postgresql.org/docs/8.0/interactive/information-schema.html

One way to learn more about the system catalogs is to run "psql -E"
or execute "\set ECHO_HIDDEN" from within psql so you can see the
queries psql sends for commands like \dt, \d tablename, etc.

--
Michael Fuhr
http://www.fuhr.org/~mfuhr/

pgsql-general by date:

Previous
From: Michael Fuhr
Date:
Subject: Re: Regular expression. How to disable ALL meta-character
Next
From: Typing80wpm@aol.com
Date:
Subject: psqlodbc MSAccess and Postgresql