Browsing Your Data in CloudBeaver

Verify your connection and explore your Northwind database

Verification Steps

Confirm everything is connected and working

1
Open your connection
Click on your connection in the navigator tree on the left side panel.
2
Expand the schema tree
Navigate to: SchemaspublicTables
3
Verify the Northwind tables
You should see all of the Northwind tables listed:
Categories Customers Employees Orders Order Details Products Shippers Suppliers
4
Browse table data
Double-click any table to open it and browse its data in the data viewer grid.
5
Open the SQL Editor
Click the SQL icon in the toolbar (or press the SQL Editor button) to open a new query tab.
6
Run a test query
Paste the following query and execute it to verify your connection:
SQL Test query — Customers by Country
SELECT CompanyName, Country, Phone
FROM "Customers"
ORDER BY Country
LIMIT 10;

Expected Output

You should see results similar to this

CompanyName Country Phone
Rancho grande Argentina (1) 123-5555
Cactus Comidas para llevar Argentina (1) 135-5555
Oceans Atlantic Holdings Argentina (1) 135-5333
Ernst Handel Austria 7675-3425
Piccolo und mehr Austria 6562-9722
Suprêmes délices Belgium (071) 23 67 22 20
Maison Dewey Belgium (02) 201 24 67
Hanari Carnes Brazil (21) 555-0091
Que Delícia Brazil (21) 555-4252
Ricardo Adocicados Brazil (21) 555-3412

🎉 CloudBeaver is configured! You can now browse and query your databases visually alongside ReportBurster's AI-powered analytics.

Your Northwind database is ready for exploration. Use the navigator to browse tables, or write custom SQL queries in the editor.

Bonus Tip

Add more database connections

💡 Add your ClickHouse connection the same way

Follow the same steps above to add a ClickHouse connection with these values:

Host: host.docker.internal
Port: 8123
Database: northwind
User: default
Password: clickhouse