You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Managing PostgreSQL across AWS, GCP, or any cloud means juggling connections, credentials, and comparing results manually. This tool gives you one UI to query them all — run the same SQL on every cloud at once, compare results side-by-side, and maintain a full audit trail with role-based access control.
Use cases:
Compare data across cloud replicas after migration
Run simultaneous health checks on all database instances
Execute schema changes across environments in one shot
Audit query history across your team with role-based permissions
Features
Core
Feature
Description
Multi-cloud execution
Query all clouds simultaneously or target a specific one
Dynamic configuration
Add clouds and databases via JSON config — zero code changes
Async query engine
Non-blocking execution with progress tracking (Statement 2 of 5) and cancellation
Multi-statement support
Execute batches separated by ; with per-statement results and auto-rollback
Role-based access
Three roles (MASTER / USER / READER) with granular SQL operation control
Password-protected ops
DROP, TRUNCATE, DELETE, ALTER require MASTER password verification
Query history & audit
Full execution log with filtering by user, database, status, and pagination
Environment variable substitution
Use ${VAR_NAME} in database config for secure credential management
SQL Editor
Feature
Description
Monaco Editor
VS Code's editor engine with PostgreSQL syntax highlighting
SQL formatting
One-click format with PostgreSQL dialect, uppercase keywords
Auto-save
Drafts saved every 5 seconds to localStorage with restore on reload
Keyboard shortcuts
Cmd/Ctrl+Enter to execute
Dark theme
Full dark mode UI
Results
Feature
Description
Side-by-side cloud results
Color-coded expandable sections per cloud
Table and JSON views
Toggle between formatted table and raw JSON
CSV / JSON export
Download results per cloud
Per-statement breakdown
Individual results for each statement in a batch
Execution timing
Duration in milliseconds per cloud
Redis Manager
Feature
Description
Multi-cloud Redis
Execute commands across all configured Redis instances simultaneously
50+ commands
Support for String, Hash, List, Set, Sorted Set, Stream, Geo, and utility commands
Pattern SCAN
Find keys matching patterns with preview, pagination, and bulk delete
Command validation
Syntax checking and dangerous command blocking
Write history
Full audit trail of all Redis write operations
Migration Verifier
Feature
Description
Git diff analysis
Extract SQL migration files between any two commits, tags, or branches
Auto-verification
Verify each DDL statement against read-only replicas (CREATE TABLE, ADD/DROP COLUMN, indexes, constraints, NOT NULL, DEFAULT, TYPE changes)
Multi-database support
Separate verification for BPP, BAP, Provider Dashboard, Rider Dashboard, Safety Dashboard
Smart categorization
Group statements into ALTER (schema), ALTER NOT NULL, INSERT, UPDATE sections
Copy at every level
Copy pending SQL per database, folder, file, or category with one click
Run on DB Manager
Send selected queries directly to the DB Manager tab for execution
Export checklist
Generate Markdown or Slack-formatted release checklists
Read-only safety
Triple protection: read replica host + read-only DB user + pool-level default_transaction_read_only=on
Auto repo sync
Init container clones repo; git fetch on page load with 5-min cooldown
User Management (MASTER only)
Feature
Description
User registration
Self-service signup, requires MASTER activation
Activate / deactivate
Enable or disable user accounts
Role assignment
Promote or demote users between MASTER / USER / READER
User search
Search users by username, name, or email
User deletion
Remove accounts (cannot delete MASTER users)
Role Permissions
Operation
MASTER
USER
READER
SELECT
Yes
Yes
Yes
INSERT / UPDATE
Yes
Yes
-
CREATE TABLE / INDEX
Yes
Yes
-
Alter TABLE (ADD)
Yes
Yes
-
DELETE
Yes (pwd)
-
-
DROP / TRUNCATE
Yes (pwd)
-
-
ALTER DROP
Yes (pwd)
-
-
Redis READ commands
Yes
Yes
Yes
Redis WRITE commands
Yes
Yes
-
Redis SCAN / KEYS
Yes
Yes
-
User management
Yes
-
-
Cancel any user's query
Yes
-
-
Blocked for all roles: DROP/CREATE DATABASE, DROP/CREATE SCHEMA, GRANT, REVOKE, ALTER/CREATE/DROP ROLE/USER
Built for teams managing PostgreSQL across multiple clouds.
About
Professional PostgreSQL database management tool for executing queries across multiple cloud providers (AWS, GCP, Azure) with role-based access control and complete audit trails.
{ "primary": { "cloudName": "cloud1", "db_configs": [ { "name": "mydb", "label": "My Database", "host": "localhost", "port": 5432, "user": "postgres", "password": "password", "database": "mydb", "schemas": ["public"], "defaultSchema": "public" } ] }, "secondary": [ { "cloudName": "cloud2", "db_configs": [ { "name": "mydb", "label": "My Database", "host": "remote-host", "port": 5432, "user": "postgres", "password": "${CLOUD2_DB_PASSWORD}", "database": "mydb", "schemas": ["public"], "defaultSchema": "public" } ] } ], "history": { "host": "localhost", "port": 5432, "user": "postgres", "password": "password", "database": "mydb" } }