Voyager to Alma Migration Query: List Patron Records and their associated Statistical Category Codes
- Product: Voyager
- Relevant for Installation Type: Multi-Tenant Direct, Dedicated-Direct, Local, TotalCare
Description
When migrating from Voyager to Alma it may be helpful to list patron records and any associated statistical category codes.
Note that this is optional and that you may want to consult with your migration team before embarking on this data cleanup.
NOTE that this is a Pass Through SQL query.
The following pass-through query will list out patron records with one row per statistical category code. The statistical category code and description are both included. Patrons who have multiple statistical category codes will have multiple rows in the query results.
SELECT
a.patron_id, a.last_name, a.first_name,
b.patron_stat_id,
c.patron_stat_desc
FROM
patron a, patron_stats b, patron_stat_code c
WHERE
a.patron_id = b.patron_id
and b.patron_stat_id = c.patron_stat_id
and b.patron_stat_id > 0
ORDER BY a.patron_id;
For other queries that may be useful, see my "Surviving Almanado: tips for a successful pre-implementation" presentation's Accompanying Materials.
Posted as is. If you need assistance in running custom SQL queries in Prepackaged Access Reports, consult the Voyager Customer Listserv.
- Article last edited: 06-Apr-2021