RV: Tables Question - Mailing list pgsql-general

From Rafa Couto
Subject RV: Tables Question
Date
Msg-id 014601c0083d$549d5c00$8802a8c0@ct.priv
Whole thread Raw
List pgsql-general
> How can I retrieve the "names" of all the tables in my database ?

In Postgres 7:

From psql: \dt
    or \d for all objects

From SQL:
    select * from pg_tables where tablename not like 'pg_%';






pgsql-general by date:

Previous
From: Louis-David Mitterrand
Date:
Subject: OID decreasing?
Next
From: Daniel Sjölie
Date:
Subject: Re: Modifying triggers in database in use...