When I do a \\dt in psql I only get a listing of tables in the current schema (public by default).
\\dt
public
How can I get a list of all tables in al
Alternatively to information_schema it is possible to use pg_tables:
information_schema
pg_tables
select * from pg_tables where schemaname='public';