<?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 How can we do dedup in SAS? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-can-we-do-dedup-in-SAS/m-p/758942#M239719</link>
    <description>&lt;P&gt;Hello team,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What are the methods to dedup in SAS? Can we dedup by proc sort nodup key?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;blueblue&lt;/P&gt;</description>
    <pubDate>Tue, 03 Aug 2021 03:47:32 GMT</pubDate>
    <dc:creator>GN0001</dc:creator>
    <dc:date>2021-08-03T03:47:32Z</dc:date>
    <item>
      <title>How can we do dedup in SAS?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-can-we-do-dedup-in-SAS/m-p/758942#M239719</link>
      <description>&lt;P&gt;Hello team,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What are the methods to dedup in SAS? Can we dedup by proc sort nodup key?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;blueblue&lt;/P&gt;</description>
      <pubDate>Tue, 03 Aug 2021 03:47:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-can-we-do-dedup-in-SAS/m-p/758942#M239719</guid>
      <dc:creator>GN0001</dc:creator>
      <dc:date>2021-08-03T03:47:32Z</dc:date>
    </item>
    <item>
      <title>Re: How can we do dedup in SAS?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-can-we-do-dedup-in-SAS/m-p/758944#M239721</link>
      <description>&lt;P&gt;&lt;SPAN&gt;&amp;gt; Can we dedup by proc sort nodup key?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;That's probably the easiest method.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Other methods include&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;proc sql select unique&amp;nbsp;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;and loading a &lt;EM&gt;hash table.&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;proc sort is almost always the appropriate tool for deduping..&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Aug 2021 04:26:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-can-we-do-dedup-in-SAS/m-p/758944#M239721</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2021-08-03T04:26:14Z</dc:date>
    </item>
    <item>
      <title>Re: How can we do dedup in SAS?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-can-we-do-dedup-in-SAS/m-p/758963#M239732</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/202329"&gt;@GN0001&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hello team,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can we dedup by proc sort nodup key?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Maxim 4.&lt;/P&gt;
&lt;P&gt;Try it and see for yourself.&lt;/P&gt;</description>
      <pubDate>Tue, 03 Aug 2021 05:51:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-can-we-do-dedup-in-SAS/m-p/758963#M239732</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-08-03T05:51:49Z</dc:date>
    </item>
    <item>
      <title>Re: How can we do dedup in SAS?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-can-we-do-dedup-in-SAS/m-p/758986#M239748</link>
      <description>&lt;P&gt;Why don't you try it anyway?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sort data=sashelp.class out=class nodupkey;
  by age;
run;


data class;
  set sashelp.class sashelp.class;
run;
proc sort data=class nodup;
  by age name;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 03 Aug 2021 09:58:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-can-we-do-dedup-in-SAS/m-p/758986#M239748</guid>
      <dc:creator>japelin</dc:creator>
      <dc:date>2021-08-03T09:58:48Z</dc:date>
    </item>
  </channel>
</rss>

