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

    Voyager to Alma Migration Query: Identify Duplicate Vendor Names

    Created By: Laura Guy (contact)
    Created on: 10/20/2020



    When migrating from Voyager to Alma, you may need to identify and resolve any duplicate vendor names. In Alma, vendor names must be unique (for more information discuss this with your migration team).

    Additional Information: Existing Voyager vendor data will be migrated once, during the initial test load. To load successfully, vendor codes and names need to be unique. Libraries might also consider making vendor names and codes unambiguous.

    This query, which you can run using Voyager Prepackaged Access Reports, will identify duplicate vendor names.

    SELECT VENDOR.VENDOR_NAME, Count(VENDOR.VENDOR_ID) AS CountOfVENDOR_ID
    FROM VENDOR
    WHERE (((VENDOR.VENDOR_NAME) Is Not Null))
    GROUP BY VENDOR.VENDOR_NAME
    HAVING (((Count(VENDOR.VENDOR_ID))>1));

     

    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.