How does one decompile and recompile a database application?

The accepted answer is great, but it's a little impractical to create a shortcut for every database.

You can save this as a powershell module.

#for use with MSAccess 2010

Function Decompile-AccessDB{
    param ([string]$dbFileName)

    [string]$argument = '"' + $dbFileName + '"' + "/Decompile"
    Start-Process -FilePath 'C:\Program Files (x86)\Microsoft Office\Office14\MSACCESS.EXE' -ArgumentList $argument
}

Then call it like this:

Decompile-AccessDB -Path "C:\Path\to\some.accdb"

This allows you to quickly and easily decompile any db from the power shell command line.

Note that you still need to hold down the Shift key when you run this to bypass the application startup.


To Decompile an Access database you'll need to create a shortcut with the following elements:

  1. Path to the MS Access Executable (MSACESS.exe)
  2. Path to the database you would like to decompile
  3. The /decompile flag

All together, then, the shortcut would look something like the following:

"C:\Program Files\Microsoft Office\Office\MSACCESS.EXE" "C:\users\tim\documents\Mydatabase.mdb" /decompile

Obviously, the paths will be different on your system.

I'd recommend making a backup of your database before running this command.

If you have any startup code in your database you should hold down the shift key to bypass the startup code execution.

Once the database opens, you can compact and repair the database to ensure optimal performance.

After the compact and repair, you can recompile the VBA code by opening any module and using the Debug Compile [DatabaseName] command.

If this is something you want to do frequently, you can create an "Access Decompile" shortcut in your SendTo Menu. Once you have this shortcut in the SendTo Menu you'll be able to right-click on any Access database and select "Send To --> Access Decompile", which is much easier than having to create a shortcut to the specific database.

Follow these steps to customize the Send To menu with an Access Decompile shortcut

  1. Create a shortcut to the Access executable.

  2. Append the /decompile flag in the Target for the shortcut. The shortcut will look like this:

    "C:\Program Files\Microsoft Office\Office\MSACCESS.EXE" /decompile

  3. Open Windows Explorer and paste the following into the address bar:

    %APPDATA%\Microsoft\Windows\SendTo

  4. Copy the shortcut you created into the SendTo Folder.

  5. The Access Decompile Shortcut will now be available for use.

To invoke the Access Decompile shortcut, right click on an Access Database in Windows Explorer and select "Send To --> Access Decompile". Be sure to hold the shift key down to bypass any startup code in the database.


@Tim Lentine's practical instructions are good, but he leaves out the actual steps required for a decompile to be worth doing:

  1. backup your database.

  2. compact your database.

  3. using the shortcut created with Tim's instructions, open your database.

  4. close that instance of Access.

  5. open a new instance of Access and open the database you just decompiled, but BE SURE YOU BYPASS ALL STARTUP CODE (i.e., hold down the shift key). If you don't do that, then you might as well go back to step 3 and try again, since if the startup code runs, your code will recompile before you are ready to do so.

  6. compact the decompiled database (and be sure you hold down the shift key so that it bypasses the startup code; see #5).

  7. open the VBE and on the Debug menu, choose COMPILE [name of project].

  8. on the file menu, save the project.

  9. compact again.

Why are all these steps necessary?

Because you want to not just decompile the VBA, you want to make sure that all the data pages where the compiled p-code was stored are completely discarded before you recompile.

I also recommend:

  1. in VBE options, turn off COMPILE ON DEMAND

  2. in the VBE, add the COMPILE button to your toolbar.

  3. compile often with that button on the toolbar, after every two or three lines of code.

Decompile is not something you should use all the time, but during heavy-duty coding, I might do a decompile a couple of times a day. And I generally decompile/recompile as the last step before releasing an app into production use.

Last of all, read Michael Kaplan's article on the subject to understand it better.