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
 
Back
Top