PostgreSQL web access provides two modes for interacting with your database directly from the browser: the Data Explorer for visual browsing and editing, and the SQL Terminal for running ad-hoc queries.
Data Explorer
The Data Explorer is a visual interface for browsing and editing PostgreSQL tables. It provides schema and table navigation, filtering, sorting, inline editing, and full CRUD operations — all without writing SQL.Connecting
Navigate to Account
Go to the Resources tab in your PAM project, open the PostgreSQL resource, and find the account you want to access. Click the Connect button next to the account.
Alternatively, if you are on the account page, click the Access button.
Alternatively, if you are on the account page, click the Access button.
- Browse tables and explore their data
- Filter and sort to quickly find what you need
- Edit data directly — add, update, or delete rows
SQL Terminal
The SQL terminal provides apsql-like experience in your browser. It is designed for ad-hoc usage — quick queries, debugging, and administrative tasks.
Connecting
Navigate to Account
Go to the Resources tab in your PAM project, open the PostgreSQL resource, and find the account you want to access. Click the Connect button next to the account.
Alternatively, if you are on the account page, click the Access button.
Alternatively, if you are on the account page, click the Access button.
Usage
Once connected, you’ll see a=> prompt. Type SQL queries as you would in psql:
Transactions
Transactions are fully supported. You can useBEGIN, COMMIT, and ROLLBACK as you would in psql:
Limits
In addition to the common session limits, the following PostgreSQL-specific limits apply:| Setting | Value |
|---|---|
| Statement timeout | 30 seconds per query |
FAQ
Is the SQL terminal an actual psql session?
Is the SQL terminal an actual psql session?
No. The SQL terminal is not a
psql client. It is a custom SQL REPL that connects directly to PostgreSQL and provides a psql-like experience, including familiar prompts and tabular output formatting. Backslash commands like \dt or \d are not supported.Can I edit data in the Data Explorer for all tables?
Can I edit data in the Data Explorer for all tables?
Editing is only available for tables that have a primary key defined. Tables without a primary key, as well as views, are displayed in read-only mode.
