I need to generate a list of the queries that are in an Access 2003. This list must have the date the query was created and the date the query was last modified. Is there any way to do this through an access query? Thanks for all help in advance.
You can try create a query based on the msysObjects table. I don't know if this is reliable since it isn't a documented functionality by MS:
Code:
SELECT msysObjects.Name, msysObjects.DateCreate, msysObjects.DateUpdate
FROM msysObjects
WHERE msysObjects.Type=5;
Duane MS Access MVP
[green]Ask a great question, get a great answer.[/green] [red]Ask a vague question, get a vague answer.[/red]
[green]Find out how to get great answers faq219-2884.[/green]
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.