Alternatives to decompiling MS Access MDE files

Posted by booyaa on Stack Overflow See other posts from Stack Overflow or by booyaa
Published on 2010-03-17T11:18:54Z Indexed on 2010/03/17 11:21 UTC
Read the original article Hit count: 462

I've been tasked with finding a suitable tool to decompile MDE files. The MDEs were created by staff who have since left (familar story eh?) and we do not have access to the originally MDB files.

The reason we need access to the original code is that the data source is changing (the backend as well as some of the table and queries) and we need a way to update queries. An example of a change, in a SELECT statement where is the WHERE clause looks for zero as a string ("0") rather than an integer.

I'm aware that unless you use the services of people like EverythingAccess.com its unlikely you will ever get the source code back.

My main query is to ask for alternative methods to decompiling code. An example of the kinds of methods I'm thinking about is to spy on the traffic between the app the the ODBC DSN using tcpdump. I might then be able to write code to translate the data source queries between the old and new systems.

Ideally I'd prefer a solution that is application centric rather than one that analyses all network traffic.

I should add one caveat, no doubt most of you are thinking the best solution is to rewrite the code, based on its perceived functionality. This is the option we're not considering (at the moment).

© Stack Overflow or respective owner

Related posts about mde

Related posts about ms-access