<?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: SAS on AWS shows insufficient space in Administration and Deployment</title>
    <link>https://communities.sas.com/t5/Administration-and-Deployment/SAS-on-AWS-shows-insufficient-space/m-p/250305#M4146</link>
    <description>&lt;P&gt;Try&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;PROC SQL;
select count(distinct(OrderID) from abc.cjreimport;
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;To get the cardinality of OrderID. I guess you try to count something that isn't suited for counting with FREQ, as almost every observation belongs to a different OrderID, so FREQ needs much more memory than usual.&lt;/P&gt;
&lt;P&gt;How many observations does abc.cjreimport have?&lt;/P&gt;</description>
    <pubDate>Tue, 16 Feb 2016 12:57:54 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2016-02-16T12:57:54Z</dc:date>
    <item>
      <title>SAS on AWS shows insufficient space</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/SAS-on-AWS-shows-insufficient-space/m-p/250207#M4143</link>
      <description>&lt;P&gt;Dear all,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I uploaded a few files to SAS University edition on AWS and tried a few calculations. The last proc freq shows me&lt;/P&gt;&lt;PRE&gt; ERROR: Insufficient space in file WORK.'SASTMP-000000072'n.UTILITY.
 ERROR: File WORK.'SASTMP-000000072'n.UTILITY is damaged. I/O processing did not complete.&lt;/PRE&gt;&lt;P&gt;I even deleted some of my files and resized the EBS to 80 GB. I don't know how you can check the free space on that EBS in SAS, but there should still be plenty left!&lt;/P&gt;</description>
      <pubDate>Mon, 15 Feb 2016 22:40:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/SAS-on-AWS-shows-insufficient-space/m-p/250207#M4143</guid>
      <dc:creator>BalassaSamuelso</dc:creator>
      <dc:date>2016-02-15T22:40:42Z</dc:date>
    </item>
    <item>
      <title>Re: SAS on AWS shows insufficient space</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/SAS-on-AWS-shows-insufficient-space/m-p/250279#M4144</link>
      <description>&lt;P&gt;Are you sure that a PROC FREQ causes this? Could you please post more of your log?&lt;/P&gt;
&lt;P&gt;In my experience, PROC FREQ does not create a utility file, but does it's job in memory.&lt;/P&gt;</description>
      <pubDate>Tue, 16 Feb 2016 11:12:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/SAS-on-AWS-shows-insufficient-space/m-p/250279#M4144</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2016-02-16T11:12:11Z</dc:date>
    </item>
    <item>
      <title>Re: SAS on AWS shows insufficient space</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/SAS-on-AWS-shows-insufficient-space/m-p/250295#M4145</link>
      <description>&lt;P&gt;I executed&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;proc freq data=abc.cjreimport NLEVELS;
	tables OrderID UserID;
run;&lt;/PRE&gt;&lt;P&gt;and got this in the log&lt;/P&gt;&lt;PRE&gt; 1          OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
 55         
 56         proc freq data=abc.cjreimport NLEVELS;
 57         tables OrderID UserID;
 58         run;
 
 ERROR: Insufficient space in file WORK.'SASTMP-000000025'n.UTILITY.
 ERROR: File WORK.'SASTMP-000000025'n.UTILITY is damaged. I/O processing did not complete.
 NOTE: The SAS System stopped processing this step because of errors.
 NOTE: There were 7045546 observations read from the data set ABC.CJREIMPORT.
 NOTE: PROCEDURE FREQ used (Total process time):
       real time           1:23.24
       cpu time            13.63 seconds
       
 59         
 60         OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
 72         &lt;/PRE&gt;</description>
      <pubDate>Tue, 16 Feb 2016 12:21:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/SAS-on-AWS-shows-insufficient-space/m-p/250295#M4145</guid>
      <dc:creator>BalassaSamuelso</dc:creator>
      <dc:date>2016-02-16T12:21:07Z</dc:date>
    </item>
    <item>
      <title>Re: SAS on AWS shows insufficient space</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/SAS-on-AWS-shows-insufficient-space/m-p/250305#M4146</link>
      <description>&lt;P&gt;Try&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;PROC SQL;
select count(distinct(OrderID) from abc.cjreimport;
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;To get the cardinality of OrderID. I guess you try to count something that isn't suited for counting with FREQ, as almost every observation belongs to a different OrderID, so FREQ needs much more memory than usual.&lt;/P&gt;
&lt;P&gt;How many observations does abc.cjreimport have?&lt;/P&gt;</description>
      <pubDate>Tue, 16 Feb 2016 12:57:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/SAS-on-AWS-shows-insufficient-space/m-p/250305#M4146</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2016-02-16T12:57:54Z</dc:date>
    </item>
    <item>
      <title>Re: SAS on AWS shows insufficient space</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/SAS-on-AWS-shows-insufficient-space/m-p/250310#M4147</link>
      <description>&lt;P&gt;Perfect, thank you so much! That was the solution.&lt;/P&gt;&lt;P&gt;The dataset has around 7 million observations. I even tried updating my instance to 4GB RAM, same error there.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Feb 2016 13:07:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/SAS-on-AWS-shows-insufficient-space/m-p/250310#M4147</guid>
      <dc:creator>BalassaSamuelso</dc:creator>
      <dc:date>2016-02-16T13:07:41Z</dc:date>
    </item>
  </channel>
</rss>

