<?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: Reduce size table in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Reduce-size-table/m-p/590452#M15053</link>
    <description>&lt;P&gt;All you did was mark the observations as deleted.&lt;/P&gt;
&lt;P&gt;Why not just re-create the dataset?&lt;/P&gt;</description>
    <pubDate>Fri, 20 Sep 2019 15:48:38 GMT</pubDate>
    <dc:creator>Tom</dc:creator>
    <dc:date>2019-09-20T15:48:38Z</dc:date>
    <item>
      <title>Reduce size table</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Reduce-size-table/m-p/590445#M15050</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could anyone please help?&lt;/P&gt;&lt;P&gt;It is a simple code to delete rows from a sas table, however my objective with this is to decrease the size of table because I will use the size&amp;nbsp; later as a schedule on SAS Management.&lt;/P&gt;&lt;P&gt;However despite of this code delete&amp;nbsp; rows the size table keeps always&amp;nbsp; the same .&lt;/P&gt;&lt;P&gt;Many thanks in advance .&lt;/P&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
delete from&amp;nbsp; sasmf.TRIGGERPAYTEST;
&amp;nbsp;&amp;nbsp;quit;&lt;/CODE&gt;&lt;/PRE&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;CODE class=" language-sas"&gt;&lt;/CODE&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 20 Sep 2019 15:39:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Reduce-size-table/m-p/590445#M15050</guid>
      <dc:creator>jorquec</dc:creator>
      <dc:date>2019-09-20T15:39:57Z</dc:date>
    </item>
    <item>
      <title>Re: Reduce size table</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Reduce-size-table/m-p/590447#M15051</link>
      <description>your code will delete all records.  Use compress to lower the size (not guaranteed).</description>
      <pubDate>Fri, 20 Sep 2019 15:43:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Reduce-size-table/m-p/590447#M15051</guid>
      <dc:creator>tomrvincent</dc:creator>
      <dc:date>2019-09-20T15:43:12Z</dc:date>
    </item>
    <item>
      <title>Re: Reduce size table</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Reduce-size-table/m-p/590448#M15052</link>
      <description>Compress?&lt;BR /&gt;How?&lt;BR /&gt;proc sql;&lt;BR /&gt;delete from sasmf.TRIGGERPAYTEST;&lt;BR /&gt;compress;&lt;BR /&gt;quit;&lt;BR /&gt;</description>
      <pubDate>Fri, 20 Sep 2019 15:44:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Reduce-size-table/m-p/590448#M15052</guid>
      <dc:creator>jorquec</dc:creator>
      <dc:date>2019-09-20T15:44:36Z</dc:date>
    </item>
    <item>
      <title>Re: Reduce size table</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Reduce-size-table/m-p/590452#M15053</link>
      <description>&lt;P&gt;All you did was mark the observations as deleted.&lt;/P&gt;
&lt;P&gt;Why not just re-create the dataset?&lt;/P&gt;</description>
      <pubDate>Fri, 20 Sep 2019 15:48:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Reduce-size-table/m-p/590452#M15053</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-09-20T15:48:38Z</dc:date>
    </item>
    <item>
      <title>Re: Reduce size table</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Reduce-size-table/m-p/590457#M15055</link>
      <description>&lt;P&gt;Sorry I can not re create the file because I lost the rights . My only option is change the size.&lt;/P&gt;</description>
      <pubDate>Fri, 20 Sep 2019 15:55:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Reduce-size-table/m-p/590457#M15055</guid>
      <dc:creator>jorquec</dc:creator>
      <dc:date>2019-09-20T15:55:19Z</dc:date>
    </item>
    <item>
      <title>Re: Reduce size table</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Reduce-size-table/m-p/590562#M15070</link>
      <description>&lt;P&gt;Using this DATA step with the COMPRESS option will compress your dataset and remove all rows:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data sasmf.TRIGGERPAYTEST (compress = yes);
  sasmf.TRIGGERPAYTEST (obs= 0);
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;BTW does sasmf mean this a mainframe SAS data library? What OS does SAS run on?&lt;/P&gt;</description>
      <pubDate>Sun, 22 Sep 2019 01:55:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Reduce-size-table/m-p/590562#M15070</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2019-09-22T01:55:47Z</dc:date>
    </item>
    <item>
      <title>Re: Reduce size table</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Reduce-size-table/m-p/590585#M15071</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data sasmf.TRIGGERPAYTEST;
 set sasmf.TRIGGERPAYTEST;
 stop;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 21 Sep 2019 11:47:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Reduce-size-table/m-p/590585#M15071</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2019-09-21T11:47:08Z</dc:date>
    </item>
  </channel>
</rss>

