<?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: Erase identical lines in data set in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Erase-identical-lines-in-data-set/m-p/441201#M110329</link>
    <description>&lt;P&gt;Use the DISTINCT keyword within Proc SQL SELECT&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Proc SQL;
  create table want as
  select distinct
    *
  from
    have
  ;
quit;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Thu, 01 Mar 2018 14:24:46 GMT</pubDate>
    <dc:creator>BrunoMueller</dc:creator>
    <dc:date>2018-03-01T14:24:46Z</dc:date>
    <item>
      <title>Erase identical lines in data set</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Erase-identical-lines-in-data-set/m-p/441192#M110326</link>
      <description>&lt;P&gt;This question goes with no example:&lt;/P&gt;
&lt;P&gt;i would like you to help me to code how can i erasa identical datalines in data set,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The situation is critical, cause i have 1000 lines and 15 columns, therefore manually would be impossible, or take at leats 1 week straight.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;in the colums i have alphanumeric ($) and numeric values.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 01 Mar 2018 14:07:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Erase-identical-lines-in-data-set/m-p/441192#M110326</guid>
      <dc:creator>jonatan_velarde</dc:creator>
      <dc:date>2018-03-01T14:07:33Z</dc:date>
    </item>
    <item>
      <title>Re: Erase identical lines in data set</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Erase-identical-lines-in-data-set/m-p/441196#M110328</link>
      <description>&lt;P&gt;An easy way:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc sort data=have out=want nodupkey;&lt;/P&gt;
&lt;P&gt;by _all_;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Mar 2018 14:18:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Erase-identical-lines-in-data-set/m-p/441196#M110328</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2018-03-01T14:18:12Z</dc:date>
    </item>
    <item>
      <title>Re: Erase identical lines in data set</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Erase-identical-lines-in-data-set/m-p/441201#M110329</link>
      <description>&lt;P&gt;Use the DISTINCT keyword within Proc SQL SELECT&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Proc SQL;
  create table want as
  select distinct
    *
  from
    have
  ;
quit;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 01 Mar 2018 14:24:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Erase-identical-lines-in-data-set/m-p/441201#M110329</guid>
      <dc:creator>BrunoMueller</dc:creator>
      <dc:date>2018-03-01T14:24:46Z</dc:date>
    </item>
  </channel>
</rss>

