We have a mde database which has tables we need to access. Is there any way of doing this?
![]() |
There are isolated problems with current patches, but they are well-known and documented on this site. |
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 Lounger
-
-
WScharlotte
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
-
Firefox 139
by
Charlie
2 hours, 35 minutes ago -
Who knows what?
by
Will Fastie
29 minutes ago -
My top ten underappreciated features in Office
by
Peter Deegan
1 hour, 15 minutes ago -
WAU Manager — It’s your computer, you are in charge!
by
Deanna McElveen
9 hours, 31 minutes ago -
Misbehaving devices
by
Susan Bradley
2 hours, 16 minutes ago -
.NET 8.0 Desktop Runtime (v8.0.16) – Windows x86 Installer
by
WSmeyerbos
1 day, 3 hours ago -
Neowin poll : What do you plan to do on Windows 10 EOS
by
Alex5723
27 minutes ago -
May 31, 2025—KB5062170 (OS Builds 22621.5415 and 22631.5415 Out-of-band
by
Alex5723
1 day, 1 hour ago -
Discover the Best AI Tools for Everything
by
Alex5723
57 minutes ago -
Edge Seems To Be Gaining Weight
by
bbearren
16 hours, 1 minute ago -
Rufus is available from the MSFT Store
by
PL1
1 day ago -
Microsoft : Ending USB-C® Port Confusion
by
Alex5723
2 days, 2 hours ago -
KB5061768 update for Intel vPro processor
by
drmark
2 hours, 44 minutes ago -
Outlook 365 classic has exhausted all shared resources
by
drmark
1 hour, 26 minutes ago -
My Simple Word 2010 Macro Is Not Working
by
mbennett555
1 day, 22 hours ago -
Office gets current release
by
Susan Bradley
2 days, 1 hour ago -
FBI: Still Using One of These Old Routers? It’s Vulnerable to Hackers
by
Alex5723
3 days, 15 hours ago -
Windows AI Local Only no NPU required!
by
RetiredGeek
2 days, 23 hours ago -
Stop the OneDrive defaults
by
CWBillow
3 days, 16 hours ago -
Windows 11 Insider Preview build 27868 released to Canary
by
joep517
4 days, 2 hours ago -
X Suspends Encrypted DMs
by
Alex5723
4 days, 4 hours ago -
WSJ : My Robot and Me AI generated movie
by
Alex5723
4 days, 4 hours ago -
Botnet hacks 9,000+ ASUS routers to add persistent SSH backdoor
by
Alex5723
4 days, 5 hours ago -
OpenAI model sabotages shutdown code
by
Cybertooth
4 days, 5 hours ago -
Backup and access old e-mails after company e-mail address is terminated
by
M W Leijendekker
3 days, 18 hours ago -
Enabling Secureboot
by
ITguy
4 days, 1 hour ago -
Windows hosting exposes additional bugs
by
Susan Bradley
4 days, 13 hours ago -
No more rounded corners??
by
CWBillow
4 days, 9 hours ago -
Android 15 and IPV6
by
Win7and10
3 days, 23 hours ago -
KB5058405 might fail to install with recovery error 0xc0000098 in ACPI.sys
by
Susan Bradley
5 days, 2 hours ago
Recent blog posts
Key Links
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
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.