<?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 Difference between NODUPKEY and NODUPRECS? in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Difference-between-NODUPKEY-and-NODUPRECS/m-p/536246#M6609</link>
    <description>&lt;P&gt;I'm wondering if there exists any difference between NODUPKEY and&amp;nbsp; NODUPRECS options ? In my view, they seem totally the same with a BY statement.&lt;/P&gt;</description>
    <pubDate>Sun, 17 Feb 2019 15:32:33 GMT</pubDate>
    <dc:creator>赵家钧</dc:creator>
    <dc:date>2019-02-17T15:32:33Z</dc:date>
    <item>
      <title>Difference between NODUPKEY and NODUPRECS?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Difference-between-NODUPKEY-and-NODUPRECS/m-p/536246#M6609</link>
      <description>&lt;P&gt;I'm wondering if there exists any difference between NODUPKEY and&amp;nbsp; NODUPRECS options ? In my view, they seem totally the same with a BY statement.&lt;/P&gt;</description>
      <pubDate>Sun, 17 Feb 2019 15:32:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Difference-between-NODUPKEY-and-NODUPRECS/m-p/536246#M6609</guid>
      <dc:creator>赵家钧</dc:creator>
      <dc:date>2019-02-17T15:32:33Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between NODUPKEY and NODUPRECS?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Difference-between-NODUPKEY-and-NODUPRECS/m-p/536247#M6610</link>
      <description>&lt;P&gt;NODUP will delete duplicated observations (records that are identical to each other) while NODUPKEY will delete those observations that have duplicate BY values (the sort BY variables that you name in PROC SORT).&lt;/P&gt;
&lt;P&gt;Links to SAS papers can be found here&lt;BR /&gt;&lt;A href="https://communities.sas.com/t5/SAS-Programming/Difference-between-NOdup-and-NoDupkey/m-p/29490#M66149" target="_blank"&gt;https://communities.sas.com/t5/SAS-Programming/Difference-between-NOdup-and-NoDupkey/m-p/29490#M66149&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 17 Feb 2019 15:38:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Difference-between-NODUPKEY-and-NODUPRECS/m-p/536247#M6610</guid>
      <dc:creator>VDD</dc:creator>
      <dc:date>2019-02-17T15:38:33Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between NODUPKEY and NODUPRECS?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Difference-between-NODUPKEY-and-NODUPRECS/m-p/536248#M6611</link>
      <description>But..... NODUPRECS option also has a BY statement. Aren't they the same?</description>
      <pubDate>Sun, 17 Feb 2019 15:45:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Difference-between-NODUPKEY-and-NODUPRECS/m-p/536248#M6611</guid>
      <dc:creator>赵家钧</dc:creator>
      <dc:date>2019-02-17T15:45:07Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between NODUPKEY and NODUPRECS?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Difference-between-NODUPKEY-and-NODUPRECS/m-p/536249#M6612</link>
      <description>&lt;P&gt;go through this article, it explains everything step by step with examples.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://support.sas.com/resources/papers/proceedings/proceedings/sugi30/037-30.pdf" target="_blank"&gt;https://support.sas.com/resources/papers/proceedings/proceedings/sugi30/037-30.pdf&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 17 Feb 2019 15:45:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Difference-between-NODUPKEY-and-NODUPRECS/m-p/536249#M6612</guid>
      <dc:creator>kiranv_</dc:creator>
      <dc:date>2019-02-17T15:45:44Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between NODUPKEY and NODUPRECS?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Difference-between-NODUPKEY-and-NODUPRECS/m-p/536250#M6613</link>
      <description>I think I get the answer just after reading the ABSTRACT!!! Thank you a lot! I just wrongly thought that the BY statement of NODUP can be customized depending on my needs.</description>
      <pubDate>Sun, 17 Feb 2019 15:50:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Difference-between-NODUPKEY-and-NODUPRECS/m-p/536250#M6613</guid>
      <dc:creator>赵家钧</dc:creator>
      <dc:date>2019-02-17T15:50:46Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between NODUPKEY and NODUPRECS?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Difference-between-NODUPKEY-and-NODUPRECS/m-p/536271#M6614</link>
      <description>NODUPRECS has been removed from PROC SORT (documentation) but it still works for backwards compatibility. I would not recommend developing any programs that rely on the functionality of NODUPRECS today. &lt;BR /&gt;&lt;BR /&gt;If you've read the paper, there are some gotcha's about it that often caught people, so they changed the functionality.</description>
      <pubDate>Sun, 17 Feb 2019 19:19:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Difference-between-NODUPKEY-and-NODUPRECS/m-p/536271#M6614</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-02-17T19:19:38Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between NODUPKEY and NODUPRECS?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Difference-between-NODUPKEY-and-NODUPRECS/m-p/541755#M7418</link>
      <description>&lt;P style="margin: 1pt 0in;"&gt;&lt;FONT color="#000000" face="Arial"&gt;In addition to Reeza, another person from SAS Support also said that NODUPRECS has been removed from the most recent documentation (9.4) because it works in an unexpected/unreliable way.&lt;/FONT&gt;&lt;/P&gt;
&lt;P style="margin: 1pt 0in;"&gt;&lt;FONT color="#000000" face="Arial"&gt;Instead of NODUPRECS, the current suggestion is to use NODUPKEY and to sort BY _ALL_&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 10 Mar 2019 00:09:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Difference-between-NODUPKEY-and-NODUPRECS/m-p/541755#M7418</guid>
      <dc:creator>agoldma</dc:creator>
      <dc:date>2019-03-10T00:09:55Z</dc:date>
    </item>
  </channel>
</rss>

