psql-like experience in your browser. It is designed for light, ad-hoc usage — quick queries, debugging, and administrative tasks — not as a replacement for a full database client or long-running workloads.
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 this an actual psql session?
Is this an actual psql session?
No. The web access 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.