Reserved de-dupe rulesAdding value conditions to dedupe rulesCreate new contacts every time someone makes a contribution ( with duplicate emails )Deduping organizationsWhat are the Attributes for the Reserved DeDupe RulesContact Dedupe BasicsCivi duplicate rules with respect to email & primary versus location typeEmployer on Profile - MismatchingDedupe Rules to import contacts without email addresses *UPDATE*Import Contacts with dedupe rulesUnsupervised reserved rule for individuals not working

Why are electrically insulating heatsinks so rare? Is it just cost?

Why is the ratio of two extensive quantities always intensive?

Withdrawals from HSA

I Accidentally Deleted a Stock Terminal Theme

Alternative to sending password over mail?

How can I prevent hyper evolved versions of regular creatures from wiping out their cousins?

1960's book about a plague that kills all white people

Is it possible to download Internet Explorer on my Mac running OS X El Capitan?

Is it legal for company to use my work email to pretend I still work there?

How do conventional missiles fly?

Can I ask the recruiters in my resume to put the reason why I am rejected?

Watching something be written to a file live with tail

Why does Optional.map make this assignment work?

Blender 2.8 I can't see vertices, edges or faces in edit mode

A reference to a well-known characterization of scattered compact spaces

What is the word for reserving something for yourself before others do?

What reasons are there for a Capitalist to oppose a 100% inheritance tax?

Facing a paradox: Earnshaw's theorem in one dimension

Why doesn't H₄O²⁺ exist?

Is there a hemisphere-neutral way of specifying a season?

What to put in ESTA if staying in US for a few days before going onto Canada

Fully-Firstable Anagram Sets

Increase size of symbol intercal when in superscript position

Twin primes whose sum is a cube



Reserved de-dupe rules


Adding value conditions to dedupe rulesCreate new contacts every time someone makes a contribution ( with duplicate emails )Deduping organizationsWhat are the Attributes for the Reserved DeDupe RulesContact Dedupe BasicsCivi duplicate rules with respect to email & primary versus location typeEmployer on Profile - MismatchingDedupe Rules to import contacts without email addresses *UPDATE*Import Contacts with dedupe rulesUnsupervised reserved rule for individuals not working













1















I'm wanting to refine the de-duping rules, but first of all I'd like to find out exactly what the predefined rules are before I create my own. They are reserved, so you can't edit them, which is fine, but it only tells you which fields they use and not what the weights and thresholds are so the full behaviour is not clear.










share|improve this question


























    1















    I'm wanting to refine the de-duping rules, but first of all I'd like to find out exactly what the predefined rules are before I create my own. They are reserved, so you can't edit them, which is fine, but it only tells you which fields they use and not what the weights and thresholds are so the full behaviour is not clear.










    share|improve this question
























      1












      1








      1


      1






      I'm wanting to refine the de-duping rules, but first of all I'd like to find out exactly what the predefined rules are before I create my own. They are reserved, so you can't edit them, which is fine, but it only tells you which fields they use and not what the weights and thresholds are so the full behaviour is not clear.










      share|improve this question














      I'm wanting to refine the de-duping rules, but first of all I'd like to find out exactly what the predefined rules are before I create my own. They are reserved, so you can't edit them, which is fine, but it only tells you which fields they use and not what the weights and thresholds are so the full behaviour is not clear.







      duplicate-contacts






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked 4 hours ago









      Mick KahnMick Kahn

      621216




      621216




















          2 Answers
          2






          active

          oldest

          votes


















          2














          If you have access to the database type



          SELECT * from civicrm_dedupe_rule r inner join civicrm_dedupe_rule_group rg on rg.id = r.dedupe_rule_group_id;



          which will give you a table which isn't pretty but is mostly understandable.






          share|improve this answer

























          • Ah you're right. I'll update answer.

            – Demerit
            2 hours ago











          • Thanks that tells me what I need, so I have deleted my earlier comment on your previous version of the answer

            – Mick Kahn
            50 mins ago


















          1














          Using Demerit's correct and useful answer above, here are the details in plain text of the three pre-configured rules that you can't see by the normal method, so may be of use to others:



          Name and Email (reserved): Supervised: Individual



          First Name: Length "null", Weight 5



          Last Name: Length "null", Weight 7



          Email: Length "null", Weight 10



          Threshold 20



          Email (reserved): Unsupervised: Individual



          Email: Length "null", Weight 10



          Threshold 20



          Name and Address (reserved): General: Individual



          First Name: Length "null", Weight 5



          Last Name: Length "null", Weight 5



          Street Address: Length "null", Weight 5



          Middle Name: Length "null", Weight 1



          Suffix: Length "null", Weight 1



          Threshold: 15






          share|improve this answer























            Your Answer








            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "605"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: false,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            noCode: true, onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcivicrm.stackexchange.com%2fquestions%2f29155%2freserved-de-dupe-rules%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            2














            If you have access to the database type



            SELECT * from civicrm_dedupe_rule r inner join civicrm_dedupe_rule_group rg on rg.id = r.dedupe_rule_group_id;



            which will give you a table which isn't pretty but is mostly understandable.






            share|improve this answer

























            • Ah you're right. I'll update answer.

              – Demerit
              2 hours ago











            • Thanks that tells me what I need, so I have deleted my earlier comment on your previous version of the answer

              – Mick Kahn
              50 mins ago















            2














            If you have access to the database type



            SELECT * from civicrm_dedupe_rule r inner join civicrm_dedupe_rule_group rg on rg.id = r.dedupe_rule_group_id;



            which will give you a table which isn't pretty but is mostly understandable.






            share|improve this answer

























            • Ah you're right. I'll update answer.

              – Demerit
              2 hours ago











            • Thanks that tells me what I need, so I have deleted my earlier comment on your previous version of the answer

              – Mick Kahn
              50 mins ago













            2












            2








            2







            If you have access to the database type



            SELECT * from civicrm_dedupe_rule r inner join civicrm_dedupe_rule_group rg on rg.id = r.dedupe_rule_group_id;



            which will give you a table which isn't pretty but is mostly understandable.






            share|improve this answer















            If you have access to the database type



            SELECT * from civicrm_dedupe_rule r inner join civicrm_dedupe_rule_group rg on rg.id = r.dedupe_rule_group_id;



            which will give you a table which isn't pretty but is mostly understandable.







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited 2 hours ago

























            answered 3 hours ago









            DemeritDemerit

            4,0462621




            4,0462621












            • Ah you're right. I'll update answer.

              – Demerit
              2 hours ago











            • Thanks that tells me what I need, so I have deleted my earlier comment on your previous version of the answer

              – Mick Kahn
              50 mins ago

















            • Ah you're right. I'll update answer.

              – Demerit
              2 hours ago











            • Thanks that tells me what I need, so I have deleted my earlier comment on your previous version of the answer

              – Mick Kahn
              50 mins ago
















            Ah you're right. I'll update answer.

            – Demerit
            2 hours ago





            Ah you're right. I'll update answer.

            – Demerit
            2 hours ago













            Thanks that tells me what I need, so I have deleted my earlier comment on your previous version of the answer

            – Mick Kahn
            50 mins ago





            Thanks that tells me what I need, so I have deleted my earlier comment on your previous version of the answer

            – Mick Kahn
            50 mins ago











            1














            Using Demerit's correct and useful answer above, here are the details in plain text of the three pre-configured rules that you can't see by the normal method, so may be of use to others:



            Name and Email (reserved): Supervised: Individual



            First Name: Length "null", Weight 5



            Last Name: Length "null", Weight 7



            Email: Length "null", Weight 10



            Threshold 20



            Email (reserved): Unsupervised: Individual



            Email: Length "null", Weight 10



            Threshold 20



            Name and Address (reserved): General: Individual



            First Name: Length "null", Weight 5



            Last Name: Length "null", Weight 5



            Street Address: Length "null", Weight 5



            Middle Name: Length "null", Weight 1



            Suffix: Length "null", Weight 1



            Threshold: 15






            share|improve this answer



























              1














              Using Demerit's correct and useful answer above, here are the details in plain text of the three pre-configured rules that you can't see by the normal method, so may be of use to others:



              Name and Email (reserved): Supervised: Individual



              First Name: Length "null", Weight 5



              Last Name: Length "null", Weight 7



              Email: Length "null", Weight 10



              Threshold 20



              Email (reserved): Unsupervised: Individual



              Email: Length "null", Weight 10



              Threshold 20



              Name and Address (reserved): General: Individual



              First Name: Length "null", Weight 5



              Last Name: Length "null", Weight 5



              Street Address: Length "null", Weight 5



              Middle Name: Length "null", Weight 1



              Suffix: Length "null", Weight 1



              Threshold: 15






              share|improve this answer

























                1












                1








                1







                Using Demerit's correct and useful answer above, here are the details in plain text of the three pre-configured rules that you can't see by the normal method, so may be of use to others:



                Name and Email (reserved): Supervised: Individual



                First Name: Length "null", Weight 5



                Last Name: Length "null", Weight 7



                Email: Length "null", Weight 10



                Threshold 20



                Email (reserved): Unsupervised: Individual



                Email: Length "null", Weight 10



                Threshold 20



                Name and Address (reserved): General: Individual



                First Name: Length "null", Weight 5



                Last Name: Length "null", Weight 5



                Street Address: Length "null", Weight 5



                Middle Name: Length "null", Weight 1



                Suffix: Length "null", Weight 1



                Threshold: 15






                share|improve this answer













                Using Demerit's correct and useful answer above, here are the details in plain text of the three pre-configured rules that you can't see by the normal method, so may be of use to others:



                Name and Email (reserved): Supervised: Individual



                First Name: Length "null", Weight 5



                Last Name: Length "null", Weight 7



                Email: Length "null", Weight 10



                Threshold 20



                Email (reserved): Unsupervised: Individual



                Email: Length "null", Weight 10



                Threshold 20



                Name and Address (reserved): General: Individual



                First Name: Length "null", Weight 5



                Last Name: Length "null", Weight 5



                Street Address: Length "null", Weight 5



                Middle Name: Length "null", Weight 1



                Suffix: Length "null", Weight 1



                Threshold: 15







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered 49 mins ago









                Mick KahnMick Kahn

                621216




                621216



























                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to CiviCRM Stack Exchange!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcivicrm.stackexchange.com%2fquestions%2f29155%2freserved-de-dupe-rules%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Bett Inhaltsverzeichnis Geschichte | Bettformen | Bettgrößen | Andere Bezeichnungen | Bettenmangel | Betten in der bildenden Kunst | Schlafmedizinische Gesichtspunkte | Siehe auch | Literatur | Weblinks | Einzelnachweise | NavigationsmenüBett, Bettstatt, BettstelleCommons: BettBabybetten: Anwendung, Ausstattungsmerkmale und VergleichskriterienWasserbetten. Vorurteile im TestHapfnNursch10.1007/s11818-012-0584-74006250-8AKS4329276-8

                    Luksemburg Sisukord Nimi | Asend | Loodus | Riigikord | Haldusjaotus | Rahvastik | Riigikaitse | Majandus | Taristu | Ajalugu | Eesti ja Luksemburgi suhted | Haridus | Kultuur | Vaata ka | Viited | Välislingid | Navigeerimismenüü50° N, 6° EÜlevaade Luksemburgi kaitsealadest.Luksemburgi rahvaarv. Statistikaamet.World Bank'i andmebaasÜlevaade Luksemburgi loodusest.Ülevaade Luksemburgi metsadest.Guy Colling. "Red List of the Vascular Plants of Luxembourg." Travaux scientifiques du Musée national d’histoire naturelle Luxembourg. 2005.Luxembourg’s biodiversity at risk.Maailma kahepaiksete andmebaas.Denis Lepage. "Luxembourg." Avibase.Ülevaade temperatuuridest. Luksemburgi meteoroloogiateenistus.Ülevaade Luksemburgist. Euroopa Liidu esinduse koduleht.Système politique. TerritoireÜlevaade Luksemburgi rahvastikust. Luksemburgi statistikaamet.Luksemburgi rahvastik. Luksemburgi statistikaamet.The World FactbookMonique Borsenberger, Paul Dickes. "Religions au Luxembourg. Quelle évolution entre 1999-2008". Luksemburgi statistikaamet. 2011.Luksemburgi peapiiskopkond. Catholic-Hierarchy.Luksemburgi armee koduleht.Luksemburgi armee relvastus.Eesti Välisministeerium.Luksemburgi rahvastik. Luksemburgi statistikaamet.Luksemburgi Eesti Seltsi koduleht.Helen Eelrand. "Raadio, mis muutis maailma." Eesti Päevaleht. 13. märts 2004.Ülevaade Luksemburgi haridussüsteemist.Ülevaade Luksemburgi keskkoolidest.Luksemburgr

                    Valle di Casies Indice Geografia fisica | Origini del nome | Storia | Società | Amministrazione | Sport | Note | Bibliografia | Voci correlate | Altri progetti | Collegamenti esterni | Menu di navigazione46°46′N 12°11′E / 46.766667°N 12.183333°E46.766667; 12.183333 (Valle di Casies)46°46′N 12°11′E / 46.766667°N 12.183333°E46.766667; 12.183333 (Valle di Casies)Sito istituzionaleAstat Censimento della popolazione 2011 - Determinazione della consistenza dei tre gruppi linguistici della Provincia Autonoma di Bolzano-Alto Adige - giugno 2012Numeri e fattiValle di CasiesDato IstatTabella dei gradi/giorno dei Comuni italiani raggruppati per Regione e Provincia26 agosto 1993, n. 412Heraldry of the World: GsiesStatistiche I.StatValCasies.comWikimedia CommonsWikimedia CommonsValle di CasiesSito ufficialeValle di CasiesMM14870458910042978-6