Use Case Guides

Database Exploration

Database Exploration

Use this workflow to understand an unfamiliar database in the current WhoDB UI.

1. Start With Storage Units

After connecting, open Storage Units.

Storage Unit List

Use the search field to find likely objects.

2. Describe Interesting Objects

Click Describe on an object card to inspect metadata and columns.

Explore Table

Explore Metadata

Use Describe for structure and Data for rows.

3. Open Data

Click Data to inspect rows.

Data View

Use Search to find values in currently loaded rows. Use WHERE conditions and Query to change the server-side result set.

Filter UI

4. Inspect Relationships

Open Graph from the sidebar.

Graph View

Select objects in the graph sidebar. Nodes render metadata and loaded columns directly. Clicking a node can load its columns, and the node Data button opens the object data page.

5. Ask Custom Questions In Scratchpad

Open Scratchpad for SQL queries.

Scratchpad

Examples:

sql

SELECT COUNT(*) AS total_users
FROM users;

sql

SELECT status, COUNT(*) AS total
FROM users
GROUP BY status
ORDER BY total DESC;

6. Export Findings

Export from the grid or Scratchpad result table when you need to hand off data.

Current formats are CSV, Excel, and JSON Lines for records from sources like MongoDB when supported.

Data Exploration Workflow

Follow the step-by-step UI workflow.

Graph View

Understand current graph behavior.