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
-
Online Casino Betting in India: Expert Tips, and Winning Strategies for 2025 (Awaiting moderation)
by
wolf7pay
7 minutes ago -
Install Office 365 Outlook classic on new Win11 machine
by
WSrcull999
3 hours, 56 minutes ago -
win 10 to win 11 with cpu/mb replacement
by
aquatarkus
1 hour, 26 minutes ago -
re-install Windows Security
by
CWBillow
2 hours, 9 minutes ago -
WWDC 2025 Recap: All of Apple’s NEW Features in 10 Minutes!
by
Alex5723
5 hours, 50 minutes ago -
macOS Tahoe 26
by
Alex5723
3 minutes ago -
Migrating from win10 to win11, instructions coming?
by
astro46
7 hours, 2 minutes ago -
Device Eligibility for Apple 2026 Operating Systems due this Fall
by
PKCano
6 hours, 37 minutes ago -
Recommended watching : Mountainhead movie
by
Alex5723
19 hours, 22 minutes ago -
End of support for Windows 10
by
Old enough to know better
4 hours, 44 minutes ago -
What goes on inside an LLM
by
Michael Covington
3 hours, 48 minutes ago -
The risk of remote access
by
Susan Bradley
9 hours, 27 minutes ago -
The cruelest month for many Office users
by
Peter Deegan
16 hours, 1 minute ago -
Tracking protection and trade-offs in Edge
by
Mary Branscombe
21 hours, 36 minutes ago -
Supreme Court grants DOGE access to confidential Social Security records
by
Alex5723
1 day, 4 hours ago -
EaseUS Partition Master free 19.6
by
Alex5723
4 hours, 51 minutes ago -
Microsoft : Edge is better than Chrome
by
Alex5723
1 day, 17 hours ago -
The EU launched DNS4EU
by
Alex5723
2 days, 6 hours ago -
Cell Phone vs. Traditional Touchtone Phone over POTS
by
280park
1 day, 20 hours ago -
Lost access to all my networked drives (shares) listed in My Computer
by
lwerman
2 days, 11 hours ago -
Set default size for pasted photo to word
by
Cyn
2 days, 17 hours ago -
Dedoimedo tries 24H2…
by
Cybertooth
2 days, 5 hours ago -
Windows 11 Insider Preview build 27871 released to Canary
by
joep517
3 days, 16 hours ago -
Windows 11 ad from Campaign Manager in Windows 10
by
Jim McKenna
1 day, 9 hours ago -
Small desktops
by
Susan Bradley
10 hours, 9 minutes ago -
Totally disable Bitlocker
by
CWBillow
2 days, 10 hours ago -
Phishers extract Millions from HMRC accounts..
by
Microfix
3 days, 14 hours ago -
Windows 10 22H2 Update today (5 June) says up-to-date but last was 2025-04
by
Alan_uk
4 days, 20 hours ago -
Thoughts on Malwarebytes Scam Guard for Mobile?
by
opti1
2 days, 15 hours ago -
Mystical Desktop
by
CWBillow
4 days, 23 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.