<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: proc dqmatch in SAS Data Management</title>
    <link>https://communities.sas.com/t5/SAS-Data-Management/proc-dqmatch/m-p/562895#M17261</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/89720"&gt;@sameer112217&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&lt;BR /&gt;proc dqmatch data = sample out = cluster_out (compress=yes) matchcode=match_cd&lt;BR /&gt;cluster = cluster_id;&lt;BR /&gt;criteria condition = 1 var = FULL_NAME matchdef='Name India' sensitivity=85;&lt;BR /&gt;criteria condition = 1 var = ENGINENO_5 matchdef='Text' sensitivity=95;&lt;BR /&gt;criteria condition = 1 var = CHASSISNO_5 matchdef='Text' sensitivity=95;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When I am running this code, the second var engineno_5 qne chassino_5 has blank values and in sas dqmatch it is grouping in the same cluster if there is a match with just one condition of full_name. I need a code where it has to match all the three conditions to group it in the same cluster. In Dataflax the blank or null value is not considered.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I don't have any actual experience with this procedure but from the documentation on the CRITERIA statement&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;H4 class="xis-argument"&gt;EXACT | MATCHDEF=&lt;/H4&gt;
&lt;DIV class="xis-argumentDescription"&gt;
&lt;P class="xis-paraSimpleFirst"&gt;assigns a cluster number.&lt;/P&gt;
&lt;DIV class="xis-argDescriptionPair" id="p0gmtiz3i1ihhhn1uly0ymawr3c9"&gt;
&lt;H4 class="xis-argument"&gt;EXACT&lt;/H4&gt;
&lt;DIV class="xis-argumentDescription"&gt;
&lt;P class="xis-paraSimpleFirst"&gt;assigns a cluster number based on an exact character match between values.&lt;/P&gt;
&lt;TABLE class="xis-summary"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD class="xis-restriction"&gt;Restriction&lt;/TD&gt;
&lt;TD class="xis-summaryText"&gt;If you specify the EXACT= option, you cannot specify the MATCHDEF= option, the MATCHCODE= option, or the SENSITIVITY= option.&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV class="xis-argDescriptionPair" id="n0susp2yvxixd4n1nga3sib7by95"&gt;
&lt;H4 class="xis-argument"&gt;MATCHDEF=&lt;SPAN class="xis-userSuppliedValue"&gt;match-definition&lt;/SPAN&gt;&lt;/H4&gt;
&lt;DIV class="xis-argumentDescription"&gt;
&lt;P class="xis-paraSimpleFirst"&gt;specifies the &lt;SPAN class="xis-userSuppliedValue"&gt;match-definition&lt;/SPAN&gt; that is used to create the &lt;SPAN class="xis-userSuppliedValue"&gt;match code&lt;/SPAN&gt; for the specified variable.&lt;/P&gt;
&lt;TABLE class="xis-summary"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD class="xis-restriction" rowspan="2"&gt;Restrictions&lt;/TD&gt;
&lt;TD class="xis-summaryText"&gt;The &lt;SPAN class="xis-userSuppliedValue"&gt;match-definition&lt;/SPAN&gt; must exist in the locale that is specified in the LOCALE= option of the DQMATCH procedure.&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="xis-summaryText"&gt;If you specify the &lt;STRONG&gt;MATCHDEF= option&lt;/STRONG&gt;, you &lt;STRONG&gt;cannot specify&lt;/STRONG&gt; the EXACT option, the MATCHCODE= option, or the &lt;STRONG&gt;SENSITIVITY&lt;/STRONG&gt; option.&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;(some emphasis added)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;it appears that you need to rethink the condtions as MATCHDEF and SENSITIVITY apparently are incompatible. I would check your log for any notes about one or more&amp;nbsp;of the options being ignored or similar.&lt;/P&gt;</description>
    <pubDate>Fri, 31 May 2019 16:11:35 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2019-05-31T16:11:35Z</dc:date>
    <item>
      <title>proc dqmatch</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/proc-dqmatch/m-p/562510#M17250</link>
      <description>&lt;P&gt;&lt;BR /&gt;proc dqmatch data = sample out = cluster_out (compress=yes) matchcode=match_cd&lt;BR /&gt;cluster = cluster_id;&lt;BR /&gt;criteria condition = 1 var = FULL_NAME matchdef='Name India' sensitivity=85;&lt;BR /&gt;criteria condition = 1 var = ENGINENO_5 matchdef='Text' sensitivity=95;&lt;BR /&gt;criteria condition = 1 var = CHASSISNO_5 matchdef='Text' sensitivity=95;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I am running this code, the second var engineno_5 qne chassino_5 has blank values and in sas dqmatch it is grouping in the same cluster if there is a match with just one condition of full_name. I need a code where it has to match all the three conditions to group it in the same cluster. In Dataflax the blank or null value is not considered.&lt;/P&gt;</description>
      <pubDate>Thu, 30 May 2019 10:56:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/proc-dqmatch/m-p/562510#M17250</guid>
      <dc:creator>sameer112217</dc:creator>
      <dc:date>2019-05-30T10:56:06Z</dc:date>
    </item>
    <item>
      <title>Re: proc dqmatch</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/proc-dqmatch/m-p/562895#M17261</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/89720"&gt;@sameer112217&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&lt;BR /&gt;proc dqmatch data = sample out = cluster_out (compress=yes) matchcode=match_cd&lt;BR /&gt;cluster = cluster_id;&lt;BR /&gt;criteria condition = 1 var = FULL_NAME matchdef='Name India' sensitivity=85;&lt;BR /&gt;criteria condition = 1 var = ENGINENO_5 matchdef='Text' sensitivity=95;&lt;BR /&gt;criteria condition = 1 var = CHASSISNO_5 matchdef='Text' sensitivity=95;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When I am running this code, the second var engineno_5 qne chassino_5 has blank values and in sas dqmatch it is grouping in the same cluster if there is a match with just one condition of full_name. I need a code where it has to match all the three conditions to group it in the same cluster. In Dataflax the blank or null value is not considered.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I don't have any actual experience with this procedure but from the documentation on the CRITERIA statement&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;H4 class="xis-argument"&gt;EXACT | MATCHDEF=&lt;/H4&gt;
&lt;DIV class="xis-argumentDescription"&gt;
&lt;P class="xis-paraSimpleFirst"&gt;assigns a cluster number.&lt;/P&gt;
&lt;DIV class="xis-argDescriptionPair" id="p0gmtiz3i1ihhhn1uly0ymawr3c9"&gt;
&lt;H4 class="xis-argument"&gt;EXACT&lt;/H4&gt;
&lt;DIV class="xis-argumentDescription"&gt;
&lt;P class="xis-paraSimpleFirst"&gt;assigns a cluster number based on an exact character match between values.&lt;/P&gt;
&lt;TABLE class="xis-summary"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD class="xis-restriction"&gt;Restriction&lt;/TD&gt;
&lt;TD class="xis-summaryText"&gt;If you specify the EXACT= option, you cannot specify the MATCHDEF= option, the MATCHCODE= option, or the SENSITIVITY= option.&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV class="xis-argDescriptionPair" id="n0susp2yvxixd4n1nga3sib7by95"&gt;
&lt;H4 class="xis-argument"&gt;MATCHDEF=&lt;SPAN class="xis-userSuppliedValue"&gt;match-definition&lt;/SPAN&gt;&lt;/H4&gt;
&lt;DIV class="xis-argumentDescription"&gt;
&lt;P class="xis-paraSimpleFirst"&gt;specifies the &lt;SPAN class="xis-userSuppliedValue"&gt;match-definition&lt;/SPAN&gt; that is used to create the &lt;SPAN class="xis-userSuppliedValue"&gt;match code&lt;/SPAN&gt; for the specified variable.&lt;/P&gt;
&lt;TABLE class="xis-summary"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD class="xis-restriction" rowspan="2"&gt;Restrictions&lt;/TD&gt;
&lt;TD class="xis-summaryText"&gt;The &lt;SPAN class="xis-userSuppliedValue"&gt;match-definition&lt;/SPAN&gt; must exist in the locale that is specified in the LOCALE= option of the DQMATCH procedure.&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="xis-summaryText"&gt;If you specify the &lt;STRONG&gt;MATCHDEF= option&lt;/STRONG&gt;, you &lt;STRONG&gt;cannot specify&lt;/STRONG&gt; the EXACT option, the MATCHCODE= option, or the &lt;STRONG&gt;SENSITIVITY&lt;/STRONG&gt; option.&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;(some emphasis added)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;it appears that you need to rethink the condtions as MATCHDEF and SENSITIVITY apparently are incompatible. I would check your log for any notes about one or more&amp;nbsp;of the options being ignored or similar.&lt;/P&gt;</description>
      <pubDate>Fri, 31 May 2019 16:11:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/proc-dqmatch/m-p/562895#M17261</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-05-31T16:11:35Z</dc:date>
    </item>
  </channel>
</rss>

