Generating a list of queries in the database.

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I want a list of all the queries in an Access 97 database. Is there anyway of
listing the names of all the queries?
 
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.
 
Back
Top