How can I print a list (or file) of all query names used?

G

Guest

The Documenter forces one page for each query. I would like to print (or
make a file) of all of the queries contained in a large database. With a
list like this (in excel for example) I could begin the task of cleaning up
the names and obsolete queries.

I am an experienced user. XP Pro, Office Pro 2003. Can I do this with a
vba module?
Thanks
Len Robichaud
(e-mail address removed)
 
D

Douglas J Steele

Is all you want a list of the query names?

SELECT Name
FROM MSysObjects
WHERE Type=5
ORDER BY Name
 
G

Guest

Thanks, this worked perfectly. Can you recommend some reading so I can know
and understand more of this sort of information? Working with the system and
hidden files?
 
R

Roger Carlson

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