In ?DBI::dbListTables we can read :
This should include views and temporary objects
And indeed it does.
How can I see only tables though, excluding views ?
I'm using the driver RPostgres::Postgres() if it matters.
In ?DBI::dbListTables we can read :
This should include views and temporary objects
And indeed it does.
How can I see only tables though, excluding views ?
I'm using the driver RPostgres::Postgres() if it matters.
 
    
    I suggest to the system catalog view pg_tables for tables:
dbGetQuery(con, "SELECT * FROM pg_tables")
The view
pg_tablesprovides access to useful information about each table in the database.
Does not contain views, materialized views or temporary tables, only regular tables (including UNLOGGED tables). See:
You may want to exclude system tables and only retrieve schema and table name:
dbGetQuery(con, "SELECT schemaname, tablename FROM pg_catalog.pg_tables WHERE schemaname !~ '^pg_' AND schemaname <> 'information_schema'")
I added explicit schema-qualification for the catalog table: pg_catalog.pg_tables. Typically not necessary, but to defend against a messed up search_path setting. See:
pg_views for views - if you need that:
dbGetQuery(con, "SELECT * FROM pg_views")
The view
pg_viewsprovides access to useful information about each view in the database.
