Skip to content

Navigating the Dashboard

pgAdmin User Interface

Once you log in, pgAdmin opens to the main User Interface.

By default, you’ll land on the Dashboard tab, which includes a welcome message, shortcuts to commonly used tasks, and links to helpful documentation and resources.


The pgAdmin interface is organized into three main areas:

Element Location Description
Menu Bar Top Provides drop-down menus for accessing various options, commands, and utilities.
Tabbed Browser Right A collection of tabs that display detailed information about the object currently selected in the Object Explorer.
Object Explorer Left Displays your database structure, including servers, schemas, tables, and functions.


User Interface
Image credit: pgAdmin


The Menu Bar sits at the top of the pgAdmin interface and provides quick access to the tools and actions you'll use while managing your database.

The options shown in each menu depend on what is currently selected in the Object Explorer, some items will be unavailable (grayed out) until they are relevant.


Menu Purpose
File Used for adjusting your pgAdmin workspace and application settings. From here, you can configure preferences or reset the layout if you’ve rearranged the interface.
Object A context-sensitive menu that changes depending on what you have selected. It’s where you connect to your server, view object properties, create new objects (like tables or databases), and refresh or delete existing ones.
Tools Provides access to pgAdmin’s built-in tools for working with your database, including the Query Tool (for writing SQL), the ERD Tool, backup and restore utilities, and import/export options.
Help Offers quick access to documentation, online user guides, version info, and support resources for pgAdmin and PostgreSQL.


This structure keeps essential tasks organized and easy to reach, whether you're simply connecting to your server or performing more advanced database administration.


Tabbed Browser

The Tabbed Browser is the right-hand pane in pgAdmin. It displays detailed information about the object currently selected in the Object Explorer. Each tab provides a different view or set of tools for managing and monitoring your database.


Tab Purpose
Dashboard Provides an overview of server or database activity with graphs and tables. Includes the following sub-tabs:
Activity – Shows usage statistics and graphs for the selected object.
State – Provides tables of active sessions, locks, and prepared transactions.
Configuration – Displays server configuration details.
Properties Shows details about the selected object, such as its type, attributes, and configuration. You can also edit object properties directly from this tab.
SQL Displays the SQL script used to create the selected object, along with optional DROP statements. Useful for reviewing or copying object definitions.
Statistics Shows performance and usage statistics for the selected object, including transaction counts, tuples in/out, and block I/O. Helps monitor database performance.
Dependencies Lists objects that the selected object depends on, ensuring you understand relationships before making changes.
Dependents Lists objects that depend on the selected object, so you can see potential impacts before modifications.
Processes Displays background tasks such as backups, restores, maintenance, or import/export operations, including status, start time, and duration.


Additional tabs may appear when using pgAdmin tools like the Query Tool, Debugger, or ERD Tool.


Dashboard Tab
Image credit: pgAdmin


Object Explorer

The left pane of pgAdmin displays the Object Explorer, providing access to all objects on your server. Expand nodes to explore databases, schemas, tables, and other objects.

Right-clicking a node opens a context-sensitive menu for common tasks. Options include creating objects, connecting or disconnecting servers, performing backups/restores, managing properties, running scripts, and viewing or modifying table data.

Table-specific options allow importing/exporting data, truncating rows, viewing data, and resetting statistics.


Toolbar

The Object Explorer toolbar offers quick access to frequently used tools. Buttons are enabled or disabled depending on the selected object.

Button Action
Filter Objects Opens the Object Filter popup to filter items in the Object Explorer tree.
Query Tool Opens the Query Tool for the current database context.
All Rows View or edit all rows of the selected table.
Filtered Rows Access the Data Filter popup to view or edit a subset of table data.
Search Objects Open the search dialog to find any database object quickly.



Next up: Learn how to manage users, assign roles, and configure permissions to control access to your database.