If you're running a multi-user Access database on a network share and you're planning to migrate from .mdb to .accdb, there's one step you should take first: split the database. Skipping this step doesn't necessarily break your migration, but it leaves you with a worse architecture on the other side — and it's much harder to split after the migration than before it. For the full end-to-end migration process, see our complete guide to Access database migration.
This guide walks through what splitting is, why it matters for the .accdb migration specifically, and exactly how to do it using Access's built-in Database Splitter Wizard.
An unsplit Access database is a single file that contains everything: the tables (data), plus the forms, queries, reports, macros, and VBA code (the application layer). When multiple users open that single file from a network share, Access has to manage simultaneous reads and writes to the same file. This is the source of most multi-user performance and locking issues.
A split database separates the data from the application:
The front-end connects to the back-end via linked tables. Users interact with the front-end locally; the data still lives centrally. Network traffic drops dramatically because only data rows travel across the wire — not forms, code, or other application objects.
You can split at any point, but doing it before the .mdb to .accdb migration gives you two advantages:
Important: Always back up your .mdb file before splitting. The Splitter Wizard modifies the original file in place — it removes the tables and replaces them with linked table shortcuts. There's no undo.
Copy the .mdb file to a location outside the network share before touching anything. This is your rollback point. Name it something like MyDatabase_backup_YYYYMMDD.mdb so you can find it later.
Also make sure no other users have the database open. The Splitter Wizard needs exclusive access to the file.
Open the .mdb file in Access (not the backup — the working copy you want to split).
_be suffix (e.g., MyDatabase_be.mdb). Choose the shared network folder where all users can reach it.The wizard moves all tables to the back-end file, then creates linked table shortcuts in the front-end that point to the back-end's location. When it finishes, the original .mdb file is now your front-end — lighter, application-only, and linked to the back-end.
LegacyLeaps preserves your forms, queries, VBA code, and relationships during the .mdb to .accdb conversion. Free scan shows exactly what will migrate before you spend a penny.
Learn About AccessLeapAfter the wizard completes, look at the Navigation Pane in your front-end. All your tables should still be listed, but each one will have a small arrow icon overlaid on the table icon — that's the indicator that it's a linked table, not a local table.
Open a few tables in Datasheet view and confirm your data is there. Run any forms that perform data entry or queries that read from multiple tables. If everything behaves the same as before, the split worked.
If a table link is broken (you'll see a red "x" icon or an error when you try to open it), use the Linked Table Manager to repair it: Database Tools → Linked Table Manager. Select the broken links and point them to the correct back-end file.
Now that you have a split architecture, each user should run their own copy of the front-end file. The typical approach:
This is the correct multi-user Access architecture. It's more work to set up than a single shared file, but the performance and stability difference is significant — especially with 5+ concurrent users.
Now you have a clean back-end file that contains only tables. This is the file to migrate from .mdb to .accdb first.
Convert the back-end using the Access Migration Assistant (Database Tools → Move Data → Access Database for .accdb) or a dedicated migration tool. The back-end migration is the lowest-risk part: no forms, no code, just tables and their relationships.
After conversion, verify:
With the back-end now a .accdb file, the front-end's linked tables still point to the old .mdb back-end. You need to update the links.
Open the front-end in Access and go to Database Tools → Linked Table Manager. Select all the linked tables (or click "Select All"), check the "Always prompt for new location" checkbox, and click OK. When prompted, navigate to the new .accdb back-end file.
Access updates all linked table connections at once. Test the application again — open forms, run queries, try data entry. If everything works, you've successfully migrated the data layer.
The front-end migration is usually the more complex half because it contains your forms, VBA code, and queries — all the things that can have compatibility issues between Jet and ACE. Common issues to watch for:
Declare statements to use PtrSafe and LongPtrIf your front-end is complex — many forms, significant VBA, embedded reports — this is where a thorough pre-migration audit pays for itself. Understand what you have before you migrate it.
Once your front-end is migrated and working as a .accdb, you can compile it to an .accde (Access Compiled Database Extension) for distribution. An .accde doesn't allow users to see or modify forms, reports, or VBA code — it's the read-only compiled version. This is the right choice for production deployments where you don't want users poking around in the application layer.
Note: You can only create an .accde from a .accdb — not from a .mdb. Another reason the migration is worth doing.
Some databases are genuinely hard to split cleanly. Issues that complicate the process:
In these cases, a done-for-you migration is often faster than working through the edge cases manually. The split-and-migrate process for a complex database can involve several rounds of testing and adjustment, and having someone who's done it before shortens the cycle significantly.
AccessLeap's done-for-you service handles the split, migration, VBA audit, and relink — with 100% money-back guarantee if your forms, queries, and relationships don't transfer correctly.
See AccessLeap OptionsPractical fixes for legacy Excel and Access problems. No spam.