MSysObjects question

J

JohnE

I have a very simple report that shows me all the tables
in the app. But, since I have split the database, I do
not show any tables. I used the following to show before
splitting and am lost on what and where to add so the
tables show. Boths ends are in the same folder on the
same server. I tried it with everything located on my
harddrive (split) but still can't get it.

SELECT MSysObjects.Name
FROM MSysObjects
WHERE (((Left([Name],4))<>"MSys") AND ((MSysObjects.Type)
=1))
ORDER BY MSysObjects.Name;

Any help is welcomed.
*** John
 
J

JohnE

Graham, thanks.
*** John

-----Original Message-----
Hi John

Linked tables have a Type of 6, not 1.

--
Good Luck!

Graham Mandeno [Access MVP]
Auckland, New Zealand

I have a very simple report that shows me all the tables
in the app. But, since I have split the database, I do
not show any tables. I used the following to show before
splitting and am lost on what and where to add so the
tables show. Boths ends are in the same folder on the
same server. I tried it with everything located on my
harddrive (split) but still can't get it.

SELECT MSysObjects.Name
FROM MSysObjects
WHERE (((Left([Name],4))<>"MSys") AND ((MSysObjects.Type)
=1))
ORDER BY MSysObjects.Name;

Any help is welcomed.
*** John


.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top