I am looking for an R command to list the available databases in a PostgreSQL server. I am using RPostgreSQL package in R.
I know how to connect to the server but the only thing I need to know is how to list the names of available databases.
I am looking for an R command to list the available databases in a PostgreSQL server. I am using RPostgreSQL package in R.
I know how to connect to the server but the only thing I need to know is how to list the names of available databases.
Once you're connected to the server you can use this query:
dbGetQuery(con, "SELECT datname FROM pg_database WHERE datistemplate = FALSE")
con
is the name of your connection.