I need help with a pretty basic Postgres command, but I cannot find a reference anywhere. My cluster is set up like this:

database_1
   \- schema_1
   \- schema_2
        \- relation_1
        \- relation_2
        \- ...
   \- relation_3
   \- relation_4
   \- ...

I know how to list databases (\l), and I know how to list relations in the "default" schema (\dt). Heck, I can even list schemas (\dn), but I cannot, for the life of me, list the relations within a schema.

Halp!

Thanks, Joe


To pre-clarify, what I'm looking for is this:

> \c database_1
You are now connected to database_1
> \somecommand
relation_1
relation_2
>
link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

Try this one:

\dt schema_2.
link|improve this answer
perfect, thanks :) At the same time I also discovered that asterisk will work with this as well (\dt schema_2.* or \dt schema_*.* etc etc) – Joseph Mastey Nov 5 '10 at 20:44
feedback
\?

psql commands help

link|improve this answer
thanks, I looked at that and \dt shows "[PATTERN]" as its options, which didn't help me much with the correct syntax – Joseph Mastey Nov 6 '10 at 19:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.