List Voyager Prepackaged Access Reports reports added or modified since a specific date
- Product: Voyager
- Relevant for Installation Type: Multi-Tenant Direct, Dedicated-Direct, Local, TotalCare
Question
How might I get a list of custom SQL reports in my Prepackaged Access Reports Reports.MDB file?
Answer
The following query will prompt you for a date. It will then list the reports that have been added or modified since that date.
SELECT MsysObjects.Name, MsysObjects.DateCreate, MsysObjects.DateUpdate
FROM MsysObjects
WHERE (((MsysObjects.DateUpdate)>[Date after you last linked database or
added reports])
AND ((Left$([Name],1))<>"~") AND ((MsysObjects.Type)=-32764))
OR (((MsysObjects.DateCreate)>[Date after you last linked database or
added reports])
AND ((Left$([Name],1))<>"~") AND ((MsysObjects.Type)=-32764))
ORDER BY MsysObjects.Name;
Additional Information
Constructing custom SQL queries by request and troubleshooting unexpected results from customer-created SQL queries falls outside the scope of Support. The above has been posted for informational purposes. Voyager-L and Developer Network are useful resources for finding helpful custom SQL or obtaining assistance from peers in troubleshooting custom queries.
- Article last edited: 18-Sept-2020