Hello Katherine,
Are you looking for something like this?
Hi Alexia, when I click that link it says the page I'm looking for doesn't exist
Hi Katherine,
Weird, let me paste its content here:
---------------------------------------------------------------------------------------------------------------------------------
While it's possible to reject merge suggestions in bulk using SQL, it is not the preferred method due to performance implications. The process involves directly manipulating the database via SQL queries. Users should proceed with caution and test in a non-production environment first.
For more details, please refer to Semarchy’s documentation: Managing Duplicates with SQL.
To reject merge suggestions in bulk using SQL, you can run a query similar to the one below. This example is written for an Oracle database and can be modified according to your needs.
Step-by-Step SQL Process:
INSERT INTO UM_PERSON ( B_LOADID, B_SOURCEID, B_PUBID, B_CLASSNAME, B_CREDATE, B_UPDDATE, B_CREATOR, B_UPDATOR, ID, B_CONFIRMEDSDPK, B_XGRP, B_CONFIRMATIONSTATUS, B_ORIGINALCONFIRMATIONSTATUS ) SELECT <##Createacontinuousloadonthemainentity##>, mdp.B_SOURCEID, mdp.B_PUBID, 'Person', sysdate, sysdate, 'SQL_REJECT_MASS', 'SQL_REJECT_MASS', mdp.ID, mdp.ID, (SELECT SYS_GUID() FROM dual), 'CONFIRMED', 'NOT_CONFIRMED' FROM md_person mdp WHERE <##Conditiononthoseyouwanttocancelsuggestion##>;
HTMLExplanation:
WHERE
clause to control which suggestions are rejected.
Tips :
Katherine Isaac
I need assistance with a SQL query to reject a duplicate suggestion. I have a merge ID containing over 2,000 records that I need to reject, but the UI performance becomes prohibitively slow when handling groups of this size, making it impossible to complete the action through the standard interface.
Anyone able to provide appropriate SQL syntax to reject this large duplicate suggestion directly through the database? I want to ensure the query replicates all the steps that would normally be executed if I accessed the suggested merge ID through the UI, clicked "reject," and then clicked "finish" to complete the process.