Export list of table names to an excel file

P

parth

how can i export a list of table names from an access 2003 db to an
excel file?
thanks.
- Parth
 
D

Douglas J. Steele

Try creating the following query, and export it:

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

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