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
You can select the tables from information_schema
information_schema
SELECT * FROM information_schema.tables WHERE table_schema = 'public'