> I'm super new to PostgreSQL, but not SQL or RDAs in general. I have
> inherited a system where no one knows anything about it. I'd like to start
> by just finding out what databases are on it, and also what users are
> created.
Connect using psql and then type "\l" (ell) to list the databases...
> What I really need is a good reference. The only I have, PostgreSQL by Korry
> Douglas and Susan Douglas is pretty good but it is more of a tutorial based
> learning tool.
http://www.postgresql.org/docs/
Perhaps this for starters which has info on psql and other client/server
apps...
http://www.postgresql.org/docs/7.4/interactive/reference.html
good luck!