Text List of Tables

  • Thread starter Thread starter Lee King
  • Start date Start date
L

Lee King

I have an Access db containing about 250 tables. I need to create a
text file that lists the names of all of the tables. What is the
easiest way to create such a list?

Thanks
 
I just kinda hacked at this and it works in mine as a base query:

SELECT MSysObjects.Name, MSysObjects.Type
FROM MSysObjects
WHERE (((MSysObjects.Name) Not Like 'MSys*') AND ((MSysObjects.Type)=1));


Thanks Kevin. That's just what I needed.

Lee
 

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

Back
Top