Databases & Backups

Browsing Database Data

An interactive table/collection browser and query editor for every supported database engine, with inline cell editing.

Every database on the Databases page has a Browse data button that opens an interactive explorer — no separate GUI client needed for a quick look or a small edit.

Browsing tables

  • The left panel lists tables (Postgres/MySQL/MSSQL), collections (MongoDB), or keys (Redis) — DeployOS uses whichever term fits the engine.
  • Click one to load its first rows automatically, in pages of 100.

Running queries

A query box sits above the results, pre-filled with a working example in the right syntax for the engine you're looking at — real SQL for Postgres/MySQL/MSSQL, a db.collection.find() call for MongoDB, or a Redis command. Clicking a table/collection/key in the sidebar inserts a ready-to-run starter query for it.

Editing data inline

When a result set is editable (a simple SELECT * FROM table on SQL engines, for instance — not the result of an arbitrary join or aggregation), double-click any cell to edit its value directly and save the change back to the database. This is meant for quick fixes, not bulk data entry — for anything larger, use a real migration or the query box itself.

💡 Tip — this connects using the credentials DeployOS already has for the database. An adopted database needs its real credentials set first (from the Databases page) before Browse data can connect.