Skip to main content
ExLibris
  • Subscribe by RSS
  • Ex Libris Knowledge Center

    List Voyager Prepackaged Access Reports queries 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 queries in my Prepackaged Access Reports Reports.MDB file?

    Answer

    The following query will prompt you for a date.  It will then list the queries 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 queries]) 
    AND ((Left$([Name],1))<>"~") AND ((MSysObjects.Type)=5)) 
    OR (((MSysObjects.DateCreate)>[Date after you last linked database or
    added queries]) 
    AND ((Left$([Name],1))<>"~") AND ((MSysObjects.Type)=5))
    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.

     

    See also: How to find specific Prepackaged Access Reports queries in Voyager based on certain strings

     


    • Article last edited: 18-Sept-2020
    • Was this article helpful?