Database Tables List

Ivan Howard

Registered User.
Local time
Today, 10:54
Joined
May 12, 2009
Messages
11
Hi All,

Would anyone be able to help me with the following?

For a report, I need to be able to get a list of actual tables within a database... is this possible?

Thanks for reading!
Ivan
 
Hi -

Copy/paste this to a new query:

Code:
SELECT msysObjects.Name
FROM msysObjects
WHERE (((msysObjects.Type)=1) AND ((Left([Name],4))<>"Msys"));

HTH - Bob
 
Thanks very much Bob - this is exactly what I need!

Much appreciated!
 

Users who are viewing this thread

Back
Top Bottom