<?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: What's the maximum file size of a SAS dataset on a Unix server? in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/What-s-the-maximum-file-size-of-a-SAS-dataset-on-a-Unix-server/m-p/950978#M45525</link>
    <description>&lt;P&gt;I suggest checking with your SAS admin about the settings for your WORK library. I think you are more likely to run into an issue with admin settings limiting file space then the size of a data set.&lt;/P&gt;</description>
    <pubDate>Fri, 15 Nov 2024 23:33:06 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2024-11-15T23:33:06Z</dc:date>
    <item>
      <title>What's the maximum file size of a SAS dataset on a Unix server?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/What-s-the-maximum-file-size-of-a-SAS-dataset-on-a-Unix-server/m-p/950976#M45524</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would like to know&amp;nbsp;What's the maximum file size of a SAS dataset on a Unix server? I am receiving into my log file this error.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;NOTE: Appending WORK.TABLE_INFO to WORK.FOUND_AGREEMENTS.&lt;BR /&gt;ERROR: Insufficient space in file WORK.FOUND_AGREEMENTS.DATA.&lt;BR /&gt;NOTE: There were 16720 observations read from the data set WORK.TABLE_INFO.&lt;BR /&gt;NOTE: 16719 observations added.&lt;BR /&gt;NOTE: The data set WORK.FOUND_AGREEMENTS has 56234190 observations and 23 variables.&lt;BR /&gt;ERROR: File WORK.FOUND_AGREEMENTS.DATA is damaged.&lt;BR /&gt;NOTE: Statements not processed because of errors noted above.&lt;BR /&gt;NOTE: PROCEDURE APPEND used (Total process time):&lt;BR /&gt;real time 2.15 seconds&lt;BR /&gt;cpu time 1.97 seconds&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If I switch from base to spde engine, will it be better.&lt;/P&gt;
&lt;P&gt;Which solution can I use ?&lt;/P&gt;</description>
      <pubDate>Fri, 15 Nov 2024 23:16:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/What-s-the-maximum-file-size-of-a-SAS-dataset-on-a-Unix-server/m-p/950976#M45524</guid>
      <dc:creator>alepage</dc:creator>
      <dc:date>2024-11-15T23:16:44Z</dc:date>
    </item>
    <item>
      <title>Re: What's the maximum file size of a SAS dataset on a Unix server?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/What-s-the-maximum-file-size-of-a-SAS-dataset-on-a-Unix-server/m-p/950978#M45525</link>
      <description>&lt;P&gt;I suggest checking with your SAS admin about the settings for your WORK library. I think you are more likely to run into an issue with admin settings limiting file space then the size of a data set.&lt;/P&gt;</description>
      <pubDate>Fri, 15 Nov 2024 23:33:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/What-s-the-maximum-file-size-of-a-SAS-dataset-on-a-Unix-server/m-p/950978#M45525</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2024-11-15T23:33:06Z</dc:date>
    </item>
    <item>
      <title>Re: What's the maximum file size of a SAS dataset on a Unix server?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/What-s-the-maximum-file-size-of-a-SAS-dataset-on-a-Unix-server/m-p/950979#M45526</link>
      <description>&lt;P&gt;There must be some quota on your WORK area.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you're one of these people who keep their SAS session alive "forever" then it's eventually just about some housekeeping. You could just start a new SAS session or you could within your existing session add a step that removes no more needed tables in work. Some code similar to below.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql noprint;
  select memname into :memlist separated by ' '
  from dictionary.tables
  where libname='WORK' and memname not in ('TABLE_INFO','FOUND_AGREEMENTS')
  ;
quit;
proc datasets lib=work nolist nowarn;
  delete &amp;amp;memlist;
quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 16 Nov 2024 00:00:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/What-s-the-maximum-file-size-of-a-SAS-dataset-on-a-Unix-server/m-p/950979#M45526</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2024-11-16T00:00:44Z</dc:date>
    </item>
    <item>
      <title>Re: What's the maximum file size of a SAS dataset on a Unix server?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/What-s-the-maximum-file-size-of-a-SAS-dataset-on-a-Unix-server/m-p/950981#M45527</link>
      <description>&lt;P&gt;I have reviewed my SAS code and I found that I was reading spde files and appending those into a base file.&amp;nbsp; Could it be that ?&lt;/P&gt;
&lt;P&gt;I have set libname dest1 spde "&amp;amp;path1".&amp;nbsp;and appending base=dest1.found agreement . I hope it will works&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 00:11:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/What-s-the-maximum-file-size-of-a-SAS-dataset-on-a-Unix-server/m-p/950981#M45527</guid>
      <dc:creator>alepage</dc:creator>
      <dc:date>2024-11-16T00:11:10Z</dc:date>
    </item>
    <item>
      <title>Re: What's the maximum file size of a SAS dataset on a Unix server?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/What-s-the-maximum-file-size-of-a-SAS-dataset-on-a-Unix-server/m-p/950982#M45528</link>
      <description>does the drop statement will do the same:&lt;BR /&gt;&lt;BR /&gt;proc sql; &lt;BR /&gt;							drop table table_info; &lt;BR /&gt;							quit;</description>
      <pubDate>Sat, 16 Nov 2024 00:28:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/What-s-the-maximum-file-size-of-a-SAS-dataset-on-a-Unix-server/m-p/950982#M45528</guid>
      <dc:creator>alepage</dc:creator>
      <dc:date>2024-11-16T00:28:07Z</dc:date>
    </item>
    <item>
      <title>Re: What's the maximum file size of a SAS dataset on a Unix server?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/What-s-the-maximum-file-size-of-a-SAS-dataset-on-a-Unix-server/m-p/950984#M45529</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/76331"&gt;@alepage&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;does the drop statement will do the same:&lt;BR /&gt;&lt;BR /&gt;proc sql; &lt;BR /&gt;drop table table_info; &lt;BR /&gt;quit;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;It does but you can only drop one table at a time and the table must exist.&lt;/P&gt;
&lt;P&gt;With Proc Datasets NOWARN you can drop multiple tables at once and the command will also work should a table not exist.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 03:18:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/What-s-the-maximum-file-size-of-a-SAS-dataset-on-a-Unix-server/m-p/950984#M45529</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2024-11-16T03:18:22Z</dc:date>
    </item>
    <item>
      <title>Re: What's the maximum file size of a SAS dataset on a Unix server?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/What-s-the-maximum-file-size-of-a-SAS-dataset-on-a-Unix-server/m-p/950992#M45530</link>
      <description>As Patrick and ballardw said your account has limited quota of disk storage , talk to your UNIX Admin to unlease your quote by command :&lt;BR /&gt;xfs_quota -x -c 'limit -u bsoft=80M bhard=100M username' /data&lt;BR /&gt;&lt;BR /&gt;P.S: use command&lt;BR /&gt;quota username&lt;BR /&gt;to chek your quota.</description>
      <pubDate>Sat, 16 Nov 2024 06:33:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/What-s-the-maximum-file-size-of-a-SAS-dataset-on-a-Unix-server/m-p/950992#M45530</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2024-11-16T06:33:04Z</dc:date>
    </item>
  </channel>
</rss>

