How to Open MDB and ACCDB Files Online Without Microsoft Access

You can inspect an Access .mdb or .accdb file in a browser on Mac, Linux or Windows. What a viewer shows, and when you still need Access.

How to Open MDB and ACCDB Files Online Without Microsoft Access

If you only need to see what is inside a Microsoft Access .mdb or .accdb file, you can open it online, without installing Windows or Microsoft Access. This works on Mac and Linux as well as on Windows.

A browser-local viewer opens the file from your computer and shows:

  • its tables, with the type of every column
  • the rows in each table
  • saved SQL queries
  • the relationships between tables, as a diagram

It shows the data, but it does not run the application built into the file: forms, reports, macros and VBA code still need Microsoft Access, and so does editing the database.

Open an MDB or ACCDB file in DBConvert Streams →

If you do need to run the Access application itself on Windows, that is what Access Runtime is for: a free way to run an Access application without the full product. It is not the lightweight answer to “what is inside this file?” on a Mac.

The viewer or Microsoft Access?

DBConvert Streams MDB and ACCDB ViewerMicrosoft Access
Where it runsAny browser on Mac, Linux or Windows. Nothing to installWindows only, with an Access licence
See tables, rows and column types
See how tables are relatedDiagram tab✓ Relationships window
Get data out✓ CSV, JSON or Parquet✓ Excel, text and other formats
Query the data✓ Read-only SQL, across several Access files at once
Password-protected .accdb✓ The password never leaves your browser
Forms, reports, macros, VBA
Edit data or table design✗ Read-only

Open the file in three steps

  1. Go to the DBConvert Streams MDB and ACCDB Viewer.
  2. Choose or drop the .mdb or .accdb file. It is read in the browser tab: not uploaded, and never changed.
  3. Pick a table in the tree on the left. Its rows open on the Data tab, and the tree shows every column with its Access type.
Northwind.mdb in the DBConvert Streams MDB and ACCDB Viewer: the Products table with its rows, and the file tree listing every table with its Access column types
The Products table from Northwind.mdb. The tree on the left lists every table with its Access column types: AutoNumber, Currency, Yes/No.

The Diagram tab draws the relationships the file declares, table by table.

Northwind.mdb opened in the DBConvert Streams MDB and ACCDB Viewer, Diagram tab showing eight tables and their relationships
Northwind.mdb: eight tables and the relationships between them.

Query the data with SQL

The SQL tab runs read-only SELECT and WITH queries. It speaks DuckDB's SQL, not Access SQL, so Access-only syntax such as IIf() or #2024-01-01# date literals does not run there. Saved Access queries are listed under the file as SQL text to read. More in the viewer documentation.

Password-protected files

The password stays with you: you type it in the page, and it is used right there in your browser to unlock the file. It is never sent to our servers or anywhere else, and it is not saved: close the tab and it is gone.

Query several Access files at once

Choose or drop more than one file and they open side by side, .mdb and .accdb mixed. Each database becomes a schema named after its file, so tables from different files join in one query:

SELECT p.ProductName, sum(o.Quantity) AS units
FROM sales.Orders o
JOIN catalog.Products p USING (ProductID)
GROUP BY 1
ORDER BY units DESC

Here sales is sales.accdb and catalog is catalog.mdb. The same works for comparing two copies of one database, for example this year's file against last year's.

Open it straight from Google Drive — coming soon

If the Access file was shared with you in Google Drive, you will not need to download it first. Right-click the .mdb or .accdb file in Drive, choose Open with → MDB and ACCDB Viewer — DBConvert, and it opens in the same viewer. The app is under review for the Google Workspace Marketplace and will be available soon.

Your browser downloads the file directly from Google Drive and reads it in the tab. It does not pass through our servers, and nothing is written back to your Drive.

Ask about the data in plain English, no SQL needed

You don't need to know SQL to get answers out of an Access file. Install the viewer as an editor extension for VS Code, or through Open VSX for Cursor and VSCodium, open the .mdb or .accdb file, and click Ask AI. Then ask the way you would ask a colleague: "Who are our top 5 customers?", "How did sales change month by month?", "Which products have never sold?"

Ask AI in VS Code on Northwind.mdb: the agent wrote a three-table query in the SQL tab and answered with a table of the top 5 customers by revenue, their top product and last order date
"Who are our top 5 customers by revenue, and what do they buy most?" The agent joined three tables on its own and answered with a table.

The agent in your editor works out which tables to join, writes the query, runs it through the viewer and answers with a table, a chart or a short summary. The query it wrote stays in the SQL tab, so you can check how it got the answer.

Ask AI in VS Code on Northwind.mdb: asked how revenue changed over time, the agent grouped orders by month in the SQL tab and answered with a revenue-by-month chart and a short summary
"How did revenue change month by month?" The agent grouped the orders by month and answered with a chart and the key takeaway.

The file stays on your machine. What the agent reads from it goes to your own AI provider, under your own account.

Before you open a file someone sent you

An Access file can carry macros and VBA code. A viewer that reads only the data never runs them, which makes it a safe first look at a file from an unknown sender.

Common questions

Someone sent me an Access file and I'm on a Mac. What now?

Open it in the viewer in your browser. You don't need Windows, a virtual machine or an Access licence just to see what's inside; you need them only if you have to use the forms or change the database.

My file is .mdb, not .accdb. Does that matter?

Not for viewing. .mdb is the older format, used from Access 97 to Access 2003; .accdb is the one Access has used since 2007. The viewer opens both.

Open an MDB or ACCDB file in DBConvert Streams →