Unable to view Objects (1 Viewer)

Robert_C

New member
Local time
Today, 10:18
Joined
Dec 4, 2019
Messages
6
:banghead: :banghead: :banghead: :banghead:

I've been banging my head against the wall for a while, now.

Short version - I am unable to view any of the objects in this back end database. Microsoft Access 2013.

Yes, i have gone into Navigation Options and ensured that Show Hidden Objects is checked, along with Show System Objects and Show Search Bar.

I have also tried the older trick of "holding down the shift key"...

What's strange is that when I build a query, all of the tables are displayed that are in the Database. Still, none of them can be seen in the Navigation Pane.

I can also create new tables. I can design and import data and save them. But then I can't open them, again, unless I link them to another database to view.

Any thoughts as to how to proceed?

Is the database just super corrupted and I need to attempt to rebuild it?

Any insight would be GREATLY appreciated!

~Robert
 

Attachments

  • NavOptions.jpg
    NavOptions.jpg
    71.9 KB · Views: 112
  • QueryBuild.jpg
    QueryBuild.jpg
    79.3 KB · Views: 105

Pat Hartman

Super Moderator
Staff member
Local time
Today, 10:18
Joined
Feb 19, 2002
Messages
43,213
Try using the custom view so you can see what is in the custom groups. This is a technique that makes it more difficult for nosy people to get to tables in the BE but it is not foolproof. You should be able to undo it if you poke around enough. I would work on a copy of the BE though to avoid doing any damage.
 

June7

AWF VIP
Local time
Today, 06:18
Joined
Mar 9, 2014
Messages
5,463
Frontend and Backend both Access? Try a new frontend - same issue?
 

Robert_C

New member
Local time
Today, 10:18
Joined
Dec 4, 2019
Messages
6
Frontend and Backend both Access? Try a new frontend - same issue?

Yes. Both Front and Back are done in Access.

This was inherited from someone who has since moved on... so I'm trying to pick up the pieces.
 

June7

AWF VIP
Local time
Today, 06:18
Joined
Mar 9, 2014
Messages
5,463
I assume the frontend is an accdb file because you are able to do design edits. I've never seen this issue and cannot replicate. If you want to provide files for analysis, follow instructions at bottom of my post.
 

isladogs

MVP / VIP
Local time
Today, 15:18
Joined
Jan 14, 2017
Messages
18,209
Please run this query in the FE and post a screenshot of the results
Code:
SELECT MSysObjects.Name, MSysObjects.Flags, MSysObjects.Type
FROM MSysObjects
WHERE (((MSysObjects.Type)=1 Or (MSysObjects.Type)=4 Or (MSysObjects.Type)=6));
 

Robert_C

New member
Local time
Today, 10:18
Joined
Dec 4, 2019
Messages
6
Please run this query in the FE and post a screenshot of the results
Code:
SELECT MSysObjects.Name, MSysObjects.Flags, MSysObjects.Type
FROM MSysObjects
WHERE (((MSysObjects.Type)=1 Or (MSysObjects.Type)=4 Or (MSysObjects.Type)=6));

Attacched below.
 

Attachments

  • SysObjects1.jpg
    SysObjects1.jpg
    85.5 KB · Views: 90
  • SysObjects2.jpg
    SysObjects2.jpg
    75.4 KB · Views: 83
  • SysObjects3.JPG
    SysObjects3.JPG
    52 KB · Views: 83

isladogs

MVP / VIP
Local time
Today, 15:18
Joined
Jan 14, 2017
Messages
18,209
Thanks for confirming the linked and local tables exist.
Can you see the linked tables in the linked table manager?

Suggest you now try my other suggestions to deal with probable corruption
 

Robert_C

New member
Local time
Today, 10:18
Joined
Dec 4, 2019
Messages
6
Thanks for confirming the linked and local tables exist.
Can you see the linked tables in the linked table manager?

Suggest you now try my other suggestions to deal with probable corruption

The Linked Table Manager is greyed out. :(

Also, since I'm new to this forum, I haven't posted enough to see any links or info in your bio.

But, it sounds like i need to just recreate the entire database...?

In this case... I would normally just copy all of the tables from one database into the next... but once I link them to another DB, will I be able to tell which tables are linked from other places, vs what are just static info?
 

isladogs

MVP / VIP
Local time
Today, 15:18
Joined
Jan 14, 2017
Messages
18,209
Apologies. I was thinking of another thread with similar issues where I'd outlined a strategy

1. Try decompiling a copy of your database to remove any corrupt compile code.
See http://www.fmsinc.com/microsoftaccess/Performance/Decompile.asp

2. If that fails import all objects into a new blank database. Linked tables should be 'imported' as linked tables. However that may fail in your case due to whatever has caused this. If so just link them from the BE.

If all of that fails van you upload both FE and BE for someone to look at?
 

Users who are viewing this thread

Top Bottom