0

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.

0

1 Answer 1

6

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.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.