We have a mde database which has tables we need to access. Is there any way of doing this?
![]() |
Patch reliability is unclear, but widespread attacks make patching prudent. Go ahead and patch, but watch out for potential problems. |
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, 8 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
-
Inetpub can be tricked
by
Susan Bradley
34 minutes ago -
How merge Outlook 2016 .pst file w/into newly created Outlook 2024 install .pst?
by
Tex265
1 hour, 48 minutes ago -
FBI 2024 Internet Crime Report
by
Alex5723
3 hours, 4 minutes ago -
Perplexity CEO says its browser will track everything users do online
by
Alex5723
29 minutes ago -
Login issues with Windows Hello
by
CWBillow
14 hours, 10 minutes ago -
How to get into a manual setup screen in 2024 Outlook classic?
by
Tex265
2 hours, 4 minutes ago -
Linux : ARMO rootkit “Curing”
by
Alex5723
1 day, 1 hour ago -
Employee monitoring app leaks 21 million screenshots in real time
by
Alex5723
1 day, 1 hour ago -
Google AI is now hallucinating idioms
by
Alex5723
1 day, 2 hours ago -
april update
by
69800
4 hours, 31 minutes ago -
Windows 11 Insider Preview build 27842 released to Canary
by
joep517
1 day, 3 hours ago -
Quick Fix for Slowing File Explorer
by
Drcard:))
1 day, 3 hours ago -
WuMgr not loading?
by
LHiggins
1 day, 4 hours ago -
Word crashes when accessing Help
by
CWBillow
7 hours, 32 minutes ago -
New Microsoft Nag — Danger! Danger! sign-in to your Microsoft Account
by
EricB
1 day, 3 hours ago -
Blank Inetpub folder
by
Susan Bradley
1 day ago -
Google : Extended Repair Program for Pixel 7a
by
Alex5723
1 day, 13 hours ago -
Updates seem to have broken Microsoft Edge
by
rebop2020
1 day ago -
Wait command?
by
CWBillow
1 day, 6 hours ago -
Malwarebytes 5 Free version manual platform updates
by
Bob99
1 day, 20 hours ago -
inetpub : Microsoft’s patch for CVE-2025–21204 introduces vulnerability
by
Alex5723
2 days, 2 hours ago -
Windows 10 finally gets fix
by
Susan Bradley
2 days, 11 hours ago -
AMD Ryzen™ Chipset Driver Release Notes 7.04.09.545
by
Alex5723
2 days, 13 hours ago -
How to use Skype after May?
by
Joann
21 hours, 24 minutes ago -
Win 7 MS Essentials suddenly not showing number of items scanned.
by
Oldtimer
2 days, 7 hours ago -
France : A law requiring messaging apps to implement a backdoor ..
by
Alex5723
3 days, 2 hours ago -
Dev runs Windows 11 ARM on an iPad Air M2
by
Alex5723
3 days, 2 hours ago -
MS-DEFCON 3: Cleanup time
by
Susan Bradley
7 hours, 5 minutes ago -
KB5056686 (.NET v8.0.15) Delivered Twice in April 2025
by
lmacri
1 day, 8 hours ago -
How to enable Extended Security Maintenance on Ubuntu 20.04 LTS before it dies
by
Alex5723
3 days, 14 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.