We have a mde database which has tables we need to access. Is there any way of doing this?
![]() |
Patch reliability is unclear. Unless you have an immediate, pressing need to install a specific patch, don't do it. |
SIGN IN | Not a member? | REGISTER | PLUS MEMBERSHIP |
-
mde database (access 97/access2002)
Home » Forums » AskWoody support » Productivity software by function » MS Access and database help » mde database (access 97/access2002)
- This topic has 38 replies, 6 voices, and was last updated 20 years, 9 months ago.
Viewing 3 reply threadsAuthorReplies-
WSJayden
AskWoody Lounger -
WSJayden
AskWoody Lounger -
WScharlotte
AskWoody LoungerAugust 23, 2004 at 4:16 am #867601Jayden has already answered at least a part of your question, Pat. Is this a single file database? An mde on a back end isn’t much use, because as has been pointed out, the tables are accessible. Compiling an mdb into an mde just compiles the code. If you have further questions or need more help, please post back.
-
WSpatt
AskWoody Lounger -
WScharlotte
AskWoody LoungerAugust 23, 2004 at 7:03 am #867629Unless the database has been protected somehow, you should be able to see any tables when you open the file, assuming that the tables are local to the mde. If you can’t see tables, then I can only assume that the allowbypasskeys property has been set to false and there is code operating to hide them. Do you get the defauolt menu when you hold down the shift key when opening the file?
-
WSpatt
AskWoody Lounger -
WSHansV
AskWoody Lounger -
WSHansV
AskWoody Lounger -
WSGARYPSWANSON
AskWoody LoungerAugust 23, 2004 at 9:11 pm #867958Patt,
Interesting thread. Regarding the MDE. Have the client create a new blank access database. Select File, Get External Data, Import and browse to the .MDE file. You should be able to see the tables even if the tables are linked to another database or hidden and import them. If you don’t see the tables in this process, then they either don’t exist or they have really secured the system well.
Any chance that user level security is in effect and the password being used does not grant full access to the tables?
As a test, I turned the shift bypass feature of one of my databases off and then created an .MDE. I could still import the tables out of the .MDE database using the process in the first paragraph.
Just my
-
WSpatt
AskWoody Lounger -
WSjohnhutchison
AskWoody Lounger -
WSpatt
AskWoody Lounger -
WSHansV
AskWoody LoungerAugust 23, 2004 at 9:51 pm #867986Try this:
– In a “normal” .mdb database, set a reference to the Microsoft DAO 3.n Object Library. The version is 3.51 – I think – for Access 97, 3.6 for Access 2000 and higher.
– Copy the following code into a standard module:Sub ListTables()
Const strDatabase = “C:AccessTest.mde”
Dim dbs As DAO.Database
Dim tdf As DAO.TableDef
Set dbs = OpenDatabase(strDatabase)
For Each tdf In dbs.TableDefs
Debug.Print tdf.Name
Next tdf
Set tdf = Nothing
dbs.Close
Set dbs = Nothing
End Sub– Substitute the correct path and filename for the .mde database.
– Run the code by clicking somewhere in it and pressing F5.
– ALL tables, including the system tables whose name begins with MSYS should be listed in the Immediate window.What is the result?
-
WSpatt
AskWoody LoungerAugust 24, 2004 at 8:36 am #868108 -
WSpatt
AskWoody LoungerAugust 24, 2004 at 8:36 am #868109 -
WSHansV
AskWoody LoungerAugust 23, 2004 at 9:51 pm #867987Try this:
– In a “normal” .mdb database, set a reference to the Microsoft DAO 3.n Object Library. The version is 3.51 – I think – for Access 97, 3.6 for Access 2000 and higher.
– Copy the following code into a standard module:Sub ListTables()
Const strDatabase = “C:AccessTest.mde”
Dim dbs As DAO.Database
Dim tdf As DAO.TableDef
Set dbs = OpenDatabase(strDatabase)
For Each tdf In dbs.TableDefs
Debug.Print tdf.Name
Next tdf
Set tdf = Nothing
dbs.Close
Set dbs = Nothing
End Sub– Substitute the correct path and filename for the .mde database.
– Run the code by clicking somewhere in it and pressing F5.
– ALL tables, including the system tables whose name begins with MSYS should be listed in the Immediate window.What is the result?
-
WScharlotte
AskWoody Lounger -
WScharlotte
AskWoody Lounger -
WSpatt
AskWoody Lounger -
WSHansV
AskWoody LoungerAugust 23, 2004 at 9:39 pm #867980I assumed from post 401092 higher up in this thread that Pat had already ticked the ‘Hidden objects’ and ‘System objects’ check boxes (the latter shouldn’t be necessary). If no user-level security has been applied, that should make all tables visible, even if their Hidden property had been set to Yes.
-
WSHansV
AskWoody LoungerAugust 23, 2004 at 9:39 pm #867981I assumed from post 401092 higher up in this thread that Pat had already ticked the ‘Hidden objects’ and ‘System objects’ check boxes (the latter shouldn’t be necessary). If no user-level security has been applied, that should make all tables visible, even if their Hidden property had been set to Yes.
-
WSjohnhutchison
AskWoody Lounger -
WSGARYPSWANSON
AskWoody LoungerAugust 23, 2004 at 9:49 pm #867984Patt,
Any chance the MDE file was created using 97 and you are using either 2000 or 2002 to try to access it. As the code in the MDE is compiled, I think there may be compatibility problems if trying to get to the database using newer versions that may be preventing you to see the tables. If so, try opening the database using 97 to get to the tables. (Can you see any objects at all?)
My hidden file comment was answered by others.
-
WSGARYPSWANSON
AskWoody LoungerAugust 23, 2004 at 9:49 pm #867985Patt,
Any chance the MDE file was created using 97 and you are using either 2000 or 2002 to try to access it. As the code in the MDE is compiled, I think there may be compatibility problems if trying to get to the database using newer versions that may be preventing you to see the tables. If so, try opening the database using 97 to get to the tables. (Can you see any objects at all?)
My hidden file comment was answered by others.
-
WSpatt
AskWoody Lounger -
WSGARYPSWANSON
AskWoody LoungerAugust 23, 2004 at 9:11 pm #867959Patt,
Interesting thread. Regarding the MDE. Have the client create a new blank access database. Select File, Get External Data, Import and browse to the .MDE file. You should be able to see the tables even if the tables are linked to another database or hidden and import them. If you don’t see the tables in this process, then they either don’t exist or they have really secured the system well.
Any chance that user level security is in effect and the password being used does not grant full access to the tables?
As a test, I turned the shift bypass feature of one of my databases off and then created an .MDE. I could still import the tables out of the .MDE database using the process in the first paragraph.
Just my
-
-
-
WSpatt
AskWoody Lounger
-
-
-
WScharlotte
AskWoody LoungerAugust 23, 2004 at 7:03 am #867630Unless the database has been protected somehow, you should be able to see any tables when you open the file, assuming that the tables are local to the mde. If you can’t see tables, then I can only assume that the allowbypasskeys property has been set to false and there is code operating to hide them. Do you get the defauolt menu when you hold down the shift key when opening the file?
-
WSHansV
AskWoody LoungerAugust 23, 2004 at 7:09 am #867631As Jayden and Charlotte have indicated, tables in an .mde database should be viewable, and you should be able to modify the design of the tables. There is no difference between .mdb databases and .mde databases in this respect. Have you tried changing the View option in the database window, for example to Details?
-
WSpatt
AskWoody LoungerAugust 23, 2004 at 7:26 am #867641 -
WSHansV
AskWoody LoungerAugust 23, 2004 at 7:31 am #867645In Large Icons view or Small Icons view, all tables might have been dragged out of the visible part of the database window. Tthe presence of scroll bars in the database window would be an indication of that. In List view or Details view, you should be able to see all tables.
> When we can see the tables can we link to these tables from another database?
Can you “see” the tables from another database now, if you select File | Get External Data | Link Tables? -
WSpatt
AskWoody LoungerAugust 23, 2004 at 7:42 am #867651>In Large Icons view or Small Icons view, all tables might have been dragged out of the visible part of the database window<
I will ring the client tomorrow and see if this is correct?We cannot see the tables from another database? Although I didn't go thru File | Get External Data | Link Tables, I will again try this tomorrow.
-
WSpatt
AskWoody LoungerAugust 23, 2004 at 7:42 am #867652>In Large Icons view or Small Icons view, all tables might have been dragged out of the visible part of the database window<
I will ring the client tomorrow and see if this is correct?We cannot see the tables from another database? Although I didn't go thru File | Get External Data | Link Tables, I will again try this tomorrow.
-
WSHansV
AskWoody LoungerAugust 23, 2004 at 7:31 am #867646In Large Icons view or Small Icons view, all tables might have been dragged out of the visible part of the database window. Tthe presence of scroll bars in the database window would be an indication of that. In List view or Details view, you should be able to see all tables.
> When we can see the tables can we link to these tables from another database?
Can you “see” the tables from another database now, if you select File | Get External Data | Link Tables?
-
-
-
WSpatt
AskWoody LoungerAugust 23, 2004 at 7:26 am #867642
WSHansV
AskWoody LoungerAugust 23, 2004 at 7:09 am #867632As Jayden and Charlotte have indicated, tables in an .mde database should be viewable, and you should be able to modify the design of the tables. There is no difference between .mdb databases and .mde databases in this respect. Have you tried changing the View option in the database window, for example to Details?
WSpatt
AskWoody LoungerWScharlotte
AskWoody LoungerAugust 23, 2004 at 4:16 am #867602Jayden has already answered at least a part of your question, Pat. Is this a single file database? An mde on a back end isn’t much use, because as has been pointed out, the tables are accessible. Compiling an mdb into an mde just compiles the code. If you have further questions or need more help, please post back.
Viewing 3 reply threads -

Plus Membership
Donations from Plus members keep this site going. You can identify the people who support AskWoody by the Plus badge on their avatars.
AskWoody Plus members not only get access to all of the contents of this site -- including Susan Bradley's frequently updated Patch Watch listing -- they also receive weekly AskWoody Plus Newsletters (formerly Windows Secrets Newsletter) and AskWoody Plus Alerts, emails when there are important breaking developments.
Get Plus!
Welcome to our unique respite from the madness.
It's easy to post questions about Windows 11, Windows 10, Win8.1, Win7, Surface, Office, or browse through our Forums. Post anonymously or register for greater privileges. Keep it civil, please: Decorous Lounge rules strictly enforced. Questions? Contact Customer Support.
Search Newsletters
Search Forums
View the Forum
Search for Topics
Recent Topics
-
Windows 11 ad from Campaign Manager in Windows 10
by
Jim McKenna
12 hours, 10 minutes ago -
Small desktops
by
Susan Bradley
1 hour, 21 minutes ago -
Totally disable Bitlocker
by
CWBillow
7 hours, 1 minute ago -
Phishers extract Millions from HMRC accounts..
by
Microfix
20 hours, 49 minutes ago -
Windows 10 22H2 Update today (5 June) says up-to-date but last was 2025-04
by
Alan_uk
22 hours, 41 minutes ago -
Thoughts on Malwarebytes Scam Guard for Mobile?
by
opti1
1 day, 1 hour ago -
Mystical Desktop
by
CWBillow
1 day, 2 hours ago -
Meta and Yandex secretly tracked billions of Android users
by
Alex5723
7 hours, 21 minutes ago -
MS-DEFCON 2: Do you need that update?
by
Susan Bradley
15 minutes ago -
CD/DVD drive is no longer recognized
by
WSCape Sand
1 day, 17 hours ago -
Windows 11 24H2 Default Apps stuck on Edge and Adobe Photoshop
by
MikeBravo
1 day, 20 hours ago -
North Face and Cartier customer data stolen in cyber attacks
by
Alex5723
1 day, 18 hours ago -
What is wrong with simple approach?
by
WSSpoke36
1 day, 10 hours ago -
Microsoft-Backed Builder.ai Set for Bankruptcy After Cash Seized
by
Alex5723
2 days, 5 hours ago -
Location, location, location
by
Susan Bradley
20 hours, 2 minutes ago -
Cannot get a task to run a restore point
by
CWBillow
2 days, 7 hours ago -
Frustrating search behavior with Outlook
by
MrJimPhelps
1 day, 21 hours ago -
June 2025 Office non-Security Updates
by
PKCano
2 days, 17 hours ago -
Secure Boot Update Fails after KB5058405 Installed
by
SteveIT
20 hours, 22 minutes ago -
Firefox Red Panda Fun Stuff
by
Lars220
2 days, 17 hours ago -
How start headers and page numbers on page 3?
by
Davidhs
3 days, 4 hours ago -
Attack on LexisNexis Risk Solutions exposes data on 300k +
by
Nibbled To Death By Ducks
2 days, 6 hours ago -
Windows 11 Insider Preview build 26200.5622 released to DEV
by
joep517
3 days, 12 hours ago -
Windows 11 Insider Preview build 26120.4230 (24H2) released to BETA
by
joep517
3 days, 12 hours ago -
MS Excel 2019 Now Prompts to Back Up With OneDrive
by
lmacri
3 days, 2 hours ago -
Firefox 139
by
Charlie
2 days, 19 hours ago -
Who knows what?
by
Will Fastie
1 day, 21 hours ago -
My top ten underappreciated features in Office
by
Peter Deegan
4 minutes ago -
WAU Manager — It’s your computer, you are in charge!
by
Deanna McElveen
1 day, 7 hours ago -
Misbehaving devices
by
Susan Bradley
2 days, 9 hours ago
Recent blog posts
Key Links
Want to Advertise in the free newsletter? How about a gift subscription in honor of a birthday? Send an email to sb@askwoody.com to ask how.
Mastodon profile for DefConPatch
Mastodon profile for AskWoody
Home • About • FAQ • Posts & Privacy • Forums • My Account
Register • Free Newsletter • Plus Membership • Gift Certificates • MS-DEFCON Alerts
Copyright ©2004-2025 by AskWoody Tech LLC. All Rights Reserved.