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, 10 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
-
Have Copilot there but not taking over the screen in Word
by
CWBillow
3 hours, 26 minutes ago -
4 Strange Facts About Тостер За Сандвичи (Awaiting moderation)
by
rosalinepettey6
9 hours, 37 minutes ago -
Windows 11 blocks Chrome 137.0.7151.68, 137.0.7151.69
by
Alex5723
18 hours ago -
Are Macs immune?
by
Susan Bradley
15 hours, 24 minutes ago -
HP Envy and the Function keys
by
CWBillow
1 hour, 45 minutes ago -
Microsoft : Removal of unwanted drivers from Windows Update
by
Alex5723
1 day, 5 hours ago -
MacOS 26 beta 1 dropped support for Firewire 400/800
by
Alex5723
1 day, 5 hours ago -
Unable to update to version 22h2
by
04om
16 hours, 17 minutes ago -
Windows 11 Insider Preview Build 26100.4482 (24H2) released to Release Preview
by
joep517
1 day, 13 hours ago -
Windows 11 Insider Preview build 27881 released to Canary
by
joep517
1 day, 13 hours ago -
Very Quarrelsome Taskbar!
by
CWBillow
22 hours, 54 minutes ago -
Move OneNote Notebook OFF OneDrive and make it local
by
CWBillow
2 days, 2 hours ago -
Microsoft 365 to block file access via legacy auth protocols by default
by
Alex5723
1 day, 14 hours ago -
Is your battery draining?
by
Susan Bradley
2 hours, 4 minutes ago -
The 16-billion-record data breach that no one’s ever heard of
by
Alex5723
1 hour, 25 minutes ago -
Weasel Words Rule Too Many Data Breach Notifications
by
Nibbled To Death By Ducks
2 days, 5 hours ago -
Windows Command Prompt and Powershell will not open as Administrator
by
Gordski
1 day, 13 hours ago -
Intel Management Engine (Intel ME) Security Issue
by
PL1
1 day, 14 hours ago -
Old Geek Forced to Update. Buy a Win 11 PC? Yikes! How do I cope?
by
RonE22
1 day, 6 hours ago -
National scam day
by
Susan Bradley
13 hours, 16 minutes ago -
macOS Tahoe 26 the end of the road for Intel Macs, OCLP, Hackintosh
by
Alex5723
1 day, 9 hours ago -
Cyberattack on some Washington Post journalists’ email accounts
by
Bob99
3 days, 6 hours ago -
Tools to support internet discussions
by
Kathy Stevens
1 day, 19 hours ago -
How get Group Policy to allow specific Driver to download?
by
Tex265
2 days, 22 hours ago -
AI is good sometimes
by
Susan Bradley
3 days, 14 hours ago -
Mozilla quietly tests Perplexity AI as a New Firefox Search Option
by
Alex5723
3 days, 4 hours ago -
Perplexity Pro free for 12 mos for Samsung Galaxy phones
by
Patricia Grace
4 days, 14 hours ago -
June KB5060842 update broke DHCP server service
by
Alex5723
4 days, 12 hours ago -
AMD Ryzen™ Chipset Driver Release Notes 7.06.02.123
by
Alex5723
4 days, 17 hours ago -
Excessive security alerts
by
WSSebastian42
3 days, 7 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.