POSTGRESQL

How To List Databases in PostgreSQL: A Complete Guide

intro

A single PostgreSQL server can contain many databases. Let’s explore three different approaches to list databases in PostgreSQL!

Tools used in the tutorial
Tool Description Link
Dbvisualizer DBVISUALIZER
TOP RATED DATABASE MANAGEMENT TOOL AND SQL CLIENT

Getting the list of databases in Postgres is one of the most common operations performed by developers and DBAs. There are several ways to achieve that, depending on preferences, requirements, and experience.

In this article, you will find out more about three different approaches to getting the list of databases in PostgreSQL:

  1. With a command-line command
  2. With a query
  3. In a database client

Let’s dig into how to list all Postgres databases!

Approach #1: List Databases With the psql CLI

psql enables you to interact with a PostgreSQL server via the command line. “psql” stands for "PostgreSQL interactive terminal" and allows you to:

  • Create databases, tables, and users
  • Run queries on a Postgres database
  • Launch commands to get metadata about your databases

In detail, psql provides the l command to get the list of databases in a PostgreSQL server.

Follow the steps below to learn the Postgres psql list databases approach!

Step #1: Connect to the PostgreSQL database server with psql command-line tool:

Copy
        
1 psql -U <username>

Replace <username> with the username of the PostgreSQL user you want to log in with. Keep in mind that the default Postgres username is postgres.

psql will ask you to enter the password associated with the user. Type it and press Enter to connect to the database.

If you are a Windows user, you may get the following error:

Copy
        
1 psql : The term 'psql' is not recognized as the name of a cmdlet, function, script file, or operable program. Check 2 the spelling of the name, or if a path was included, verify that the path is correct and try again.

If that is your case, refer to our dedicated FAQ question.

Keep in mind that users can see executed commands by observing the history of commands in the CLI. This will allow them to see the password you typed. If you want to prevent entering the password for security reasons, you can:

  • Set the password in the PGPASSWORD environment variable; or
  • Add the password to the .pgpass file

Now that you are logged in, you can get the list databases in Postgres with this command:

Copy
        
1 \l

This will return a table containing the databases of the PostgreSQL server in the format below:

The list of Postgres databases
The list of Postgres databases

Note that l is the shortened version of the list command. So, list will return the same result:

The same list as above
The same list as above

Use l+ or list+  to get additional information about each database, such as the size in Kb and its description:

The detailed Postgres database list
The detailed Postgres database list

Approach #2: List Databases in Postgres With a Query

If the command line is not your thing, remember that you can also list databases in PostgreSQL by querying pg_catalog.pg_database. That Postgres catalog contains a row for each database in the server.

Retrieve the list of databases in PostgreSQL with the query below:

Copy
        
1 SELECT * 2 FROM pg_catalog.pg_database;

The result will be:

Note the list of databases in the datname column
Note the list of databases in the datname column

The datname column stores the name of each database. In particular, below is a summary table with the columns contained in the pg_database catalog:

ColumnTypeDescription
oidoidRow identifier
datnamenameDatabase name
datdbaoid (references pg_authid.oid)Database owner, usually the user who created it
encodingint4Character encoding for the database
datlocprovidercharLocale provider: b = builtin, c = libc, i = ICU.
datistemplateboolIf true, any user with CREATEDB privileges can clone the database; otherwise, only superusers or the owner can
datallowconnboolIf false, no one can connect to the database. Used to protect template0 from modification
dathasloginevtboolIndicates if login event triggers exist for this database. Internally used by PostgreSQL
datconnlimitint4Max concurrent connections allowed: -1 = no limit, -2 = database is invalid
datfrozenxidxidEarliest transaction ID considered "frozen." Used for vacuuming to prevent transaction ID wraparound
datminmxidxidEarliest multixact ID considered "frozen." Used for vacuuming to prevent multixact ID wraparound
dattablespaceoid (references pg_tablespace.oid)Default tablespace for the database. Tables with pg_class.reltablespace = 0 are stored here
datcollatetextLC_COLLATE setting for the database
datctypetextLC_CTYPE setting for the database
datlocaletextLocale name for collation provider. If libc, this is NULL and datcollate/datctype are used
daticurulestextICU collation rules for the database.
datcollversiontextVersion of the collation provider. Stored at creation and checked for changes that may affect data consistency
dataclaclitem[]Access privileges. See PostgreSQL documentation (Section 5.8) for details

If you are not familiar with some of the types above, read our guide on data types in PostgreSQL.

Notice that the returned dataset also includes the database templates used by PostgreSQL to initialize a new database when a CREATE DATABASE query is launched. You can filter them out with the query below:

Copy
        
1 SELECT * 2 FROM pg_catalog.pg_database 3 WHERE datistemplate = false;

This time, the result will be:

Note that the template databases have been filtered out
Note that the template databases have been filtered out

Great! The resulting table no longer includes the templates.

To list databases— without the templates— with their sizes in Kb, run:

Copy
        
1 SELECT datname, pg_size_pretty(pg_database_size(datname)) 2 FROM pg_database 3 WHERE datistemplate = false;

The function pg_size_pretty(pg_database_size(datname)) returns the size of a PostgreSQL database in a human-readable format.

The result will be:

image.png
Returns the database size in a human-readable format

Awesome! You now know also the Postgres list databases pro tricks.

Approach #3: List Databases in a Visual PostgreSQL Client

The last and easiest way to show all databases in PostgreSQL is through a database client, such as DbVisualizer. This powerful, feature-rich tool gives you what you need to visually connect and manage your Postgres databases.

In detail, DbVisualizer is a PostgreSQL client with extended support for Postgres-specific object types and features. All you have to do to list databases in Postgres using DbVisualizer is:

Step #1: Create a database connection to your PostgreSQL server as explained in the official doc.

Step #2: Select your target server in the “Connections” menu on the left, right-click on it, and choose the “Connect” option:

Selecting the Connect option in DbVisualizer
Selecting the “Connect” option in DbVisualizer

Step #3: Open the “Databases” dropdown to see the list of databases, or right-click on it and open it in a new tab:

The list of databases in DbVisualizer
The list of databases in DbVisualizer

See how this is much easier and clearer compared to using the command line or a query. Even non-technical users could do it.

Fantastic! DbVisualizer allows you to list databases in PostgreSQL with just a couple of clicks.

Conclusion

In this article, you explored different ways to list databases in Postgres. No matter which method you choose, the task remains straightforward. The three main approaches include using a command-line command, executing a SQL query, or leveraging a GUI tool.

As shown here, a database client with full support for PostgreSQL such as DbVisualizer allows you to visually deal with databases and provide several advanced features, such as query optimization. Download DbVisualizer for free!

FAQ

How to list databases in Postgres?

You can list databases in PostgreSQL using the following approaches:

  • Command-line: Run l or list inside the psql shell.
  • SQL query: Execute SELECT datname FROM pg_database;.
  • GUI tools: Use database clients like DbVisualizer or pgAdmin to view databases visually.
  • psql command: Run psql -l in a terminal.

How to deal with “The term 'psql' is not recognized” error on Windows?

On Windows, psql is not usually installed globally. To use it, you must first navigate to the PostgreSQL installation folder. The bin directory contains psql.exe, so open a terminal and run the following command to navigate to it:

Copy
        
1 cd "C:\Program Files\PostgreSQL\17\bin"

Replace 17 with the version of PostgreSQL installed on your system. If you installed PostgreSQL in a different directory, adjust the path accordingly.

Once in the bin folder, you can launch psql by running:

Copy
        
1 .\psql.exe

How to list PostgreSQL databases with a single command?

You can get the list databases in Postgres with this single command:

Copy
        
1 psql -U <username> -l

Replace <username> with an actual username. This Postgres psql list databases command will connect to the server and then directly launch the l command to get the list of all databases.

How to get the list of tables in a database with psql?

If you want to get the list of tables contained in a specific database, first connect to a database in psql with:

Copy
        
1 \c <database_name>

Then, use the dt command:

Copy
        
1 \dt

This will return all the tables in the selected database. For more information, follow our Show Tables PostgreSQL Guide.

What is the easiest way to list databases in PostgreSQL?

The easiest way to list databases in PostgreSQL is through a database client. This is because a Postgres client gives you the ability to see the databases available on the server in a user-friendly interface. Such an approach does not involve queries or commands in the terminal and makes it a perfect solution for both experienced and non-experienced users.

How to use pgAdmin to view the list of databases in PostgreSQL?

To use pgAdmin to view a list of databases in PostgreSQL, open pgAdmin and connect to your Postgres server. Then, expand the “Servers” group in the left panel to see a list of servers. Click on the server that you want to list the databases for, and then expand the Databases group to see a list of databases.

What are the permissions required to list databases in Postgres?

To list databases in PostgreSQL, a user needs one of the following permissions:

  • Superuser privileges: Superusers can list all databases without restrictions.
  • pg_database read access: Users with the CONNECT privilege on a database can see its name in pg_database.
  • pg_monitor role: Members of this role can view all databases without superuser access.

Are there any security concerns when listing databases in PostgreSQL?

If the permissions on the PostgreSQL server have been not set correctly, a user can see databases they should not have access to. To mitigate this risk, it is important to assign the right groups and limit the use of superuser accounts to only when necessary.

What are database templates in PostgreSQL?

In PostgreSQL, database templates are predefined databases used as a base when creating new databases. The default templates are template0 and template1. template1 is the default for new databases and can be customized, while template0 remains unchanged for creating clean databases. Users can also create custom templates by modifying template1 or duplicating an existing database. These templates help standardize database configurations and speed up database creation.

Dbvis download link img
About the author
Antonello Zanini

Antonello is a software engineer, and often refers to himself as a technology bishop. His mission is to spread knowledge through writing.

The Table Icon
Sign up to receive The Table's roundup
More from the table
Title Author Tags Length Published
title

SQL TRUNCATE TABLE: A Complete Guide

author Antonello Zanini tags MySQL ORACLE POSTGRESQL SQL SQL SERVER 6 min 2025-03-26
title

A Complete Guide to the FULL OUTER JOIN SQL Operation

author Antonello Zanini tags MySQL ORACLE POSTGRESQL SQL SQL SERVER 7 min 2025-03-24
title

How to Use JOIN in a DELETE Query in SQL

author Antonello Zanini tags MySQL ORACLE POSTGRESQL SQL SQL SERVER 8 min 2025-03-20
title

A Guide to the SQL CREATE TABLE Statement

author Antonello Zanini tags MySQL ORACLE POSTGRESQL SQL SQL SERVER 7 min 2025-03-17
title

Clustered Indexes in PostgreSQL: What They Are and How to Use Them

author Lukas Vileikis tags DbVisualizer POSTGRESQL SQL 5 min 2025-03-13
title

SQL PIVOT: How to Use a Pivot Table In SQL

author Leslie S. Gyamfi tags MySQL POSTGRESQL SQL SQL SERVER 9 min 2025-03-10
title

A Complete Guide to the SQL CREATE INDEX Statement

author Antonello Zanini tags MySQL ORACLE POSTGRESQL SQL SQL SERVER 7 min 2025-03-05
title

A Complete Guide to the Order of Execution in SQL

author Antonello Zanini tags MySQL ORACLE POSTGRESQL SQL SQL SERVER 9 min 2025-03-03
title

How to Truncate Many Tables In SQL at Once

author Antonello Zanini tags MySQL ORACLE POSTGRESQL SQL SQL SERVER 6 min 2025-02-24
title

PostgreSQL Truncate Table Reset Sequence Guide

author Antonello Zanini tags POSTGRESQL 6 min 2025-02-17

The content provided on dbvis.com/thetable, including but not limited to code and examples, is intended for educational and informational purposes only. We do not make any warranties or representations of any kind. Read more here.