Generating a list of queries in the database.

S

Soma_rich

I want a list of all the queries in an Access 97 database. Is there anyway of
listing the names of all the queries?
 
J

Jerry Whittle

SELECT MSysObjects.Name, MSysObjects.Type
FROM MSysObjects
WHERE MSysObjects.Type=5
ORDER BY MSysObjects.Name;

Those starting with ~ are record sources for forms and reports.
 
Top