<?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: ERROR: Insufficient space in file. is damaged. I/O processing did not complete. in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/ERROR-Insufficient-space-in-file-is-damaged-I-O-processing-did/m-p/307144#M65742</link>
    <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp﻿&lt;/a&gt;&amp;nbsp;I'm not sure I follow. Could you please elaborate? Thanks!&lt;/P&gt;</description>
    <pubDate>Tue, 25 Oct 2016 14:47:14 GMT</pubDate>
    <dc:creator>_maldini_</dc:creator>
    <dc:date>2016-10-25T14:47:14Z</dc:date>
    <item>
      <title>ERROR: Insufficient space in file. is damaged. I/O processing did not complete.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-Insufficient-space-in-file-is-damaged-I-O-processing-did/m-p/306998#M65712</link>
      <description>&lt;P&gt;ERROR: Insufficient space in file WORK.NEISS_SUBSET_1.DATA.&lt;BR /&gt;ERROR: File WORK.NEISS_SUBSET_1.DATA is damaged. I/O processing did not complete.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am trying to merge `14 datasets (2002 - 2015) w/ a combined number of observations that exceeds 5 million. I am using SAS University Edition on a Mac OS X w/ 70 GB of free storage.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Previous posts on this topic have not solved the problem.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How much storage space is needed? Is 70 GB not enough?!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Full log:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt; 1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;BR /&gt; 55 &lt;BR /&gt; 56 DATA neiss_subset_1;&lt;BR /&gt; 57 MERGE neiss_merge WORK.NEISS_2002_2015;&lt;BR /&gt; 58 BY cpsc_case_no trmt_date;&lt;BR /&gt; 59 RUN;&lt;BR /&gt; &lt;BR /&gt; ERROR: Insufficient space in file WORK.NEISS_SUBSET_1.DATA.&lt;BR /&gt; ERROR: File WORK.NEISS_SUBSET_1.DATA is damaged. I/O processing did not complete.&lt;BR /&gt; NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt; NOTE: There were 896761 observations read from the data set WORK.NEISS_MERGE.&lt;BR /&gt; NOTE: There were 1 observations read from the data set WORK.NEISS_2002_2015.&lt;BR /&gt; WARNING: The data set WORK.NEISS_SUBSET_1 may be incomplete. When this step was stopped there were 896760 observations and 28 &lt;BR /&gt; variables.&lt;BR /&gt; WARNING: Data set WORK.NEISS_SUBSET_1 was not replaced because this step was stopped.&lt;BR /&gt; NOTE: DATA statement used (Total process time):&lt;BR /&gt; real time 0.90 seconds&lt;BR /&gt; cpu time 0.89 seconds&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; 60 &lt;BR /&gt; 61 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;BR /&gt; 73&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Oct 2016 14:45:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-Insufficient-space-in-file-is-damaged-I-O-processing-did/m-p/306998#M65712</guid>
      <dc:creator>_maldini_</dc:creator>
      <dc:date>2016-10-25T14:45:33Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Insufficient space in file. is damaged. I/O processing did not complete.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-Insufficient-space-in-file-is-damaged-I-O-processing-did/m-p/307010#M65717</link>
      <description>&lt;P&gt;It depends on how you merge.&lt;/P&gt;
&lt;P&gt;If you do a cartesian product on 14 tables, I suspect 70 *TB* would not be enough.&lt;/P&gt;</description>
      <pubDate>Tue, 25 Oct 2016 02:33:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-Insufficient-space-in-file-is-damaged-I-O-processing-did/m-p/307010#M65717</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2016-10-25T02:33:28Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Insufficient space in file. is damaged. I/O processing did not complete.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-Insufficient-space-in-file-is-damaged-I-O-processing-did/m-p/307025#M65724</link>
      <description>&lt;P&gt;You should not put those tables in WORK library, put them in Share Fold.And also make it as WORK library.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname xx v9 '/folders/myfolders/';
options user=xx;
data NEISS_SUBSET_1;
merge NEISS_SUBSET_1 have;
.....&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 25 Oct 2016 05:19:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-Insufficient-space-in-file-is-damaged-I-O-processing-did/m-p/307025#M65724</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-10-25T05:19:54Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Insufficient space in file. is damaged. I/O processing did not complete.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-Insufficient-space-in-file-is-damaged-I-O-processing-did/m-p/307089#M65735</link>
      <description>&lt;P&gt;3TB drives are running at about $90 which means that 70gb is costs about $2.5. You may want to increase tour investment in disk space.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However you do have to determine the nature of your joins, hopefully you are not doing I lot of cartesian joins.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Oct 2016 11:57:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-Insufficient-space-in-file-is-damaged-I-O-processing-did/m-p/307089#M65735</guid>
      <dc:creator>rogerjdeangelis</dc:creator>
      <dc:date>2016-10-25T11:57:21Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Insufficient space in file. is damaged. I/O processing did not complete.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-Insufficient-space-in-file-is-damaged-I-O-processing-did/m-p/307126#M65738</link>
      <description>&lt;P&gt;Please show the log for that code with the error messages.&lt;/P&gt;
&lt;P&gt;The fewer the details you provide the more guesses or questions you get before any resolution.&lt;/P&gt;</description>
      <pubDate>Tue, 25 Oct 2016 13:56:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-Insufficient-space-in-file-is-damaged-I-O-processing-did/m-p/307126#M65738</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2016-10-25T13:56:48Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Insufficient space in file. is damaged. I/O processing did not complete.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-Insufficient-space-in-file-is-damaged-I-O-processing-did/m-p/307143#M65741</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;BR /&gt; 1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;BR /&gt; 55 &lt;BR /&gt; 56 DATA neiss_subset_1;&lt;BR /&gt; 57 MERGE neiss_merge WORK.NEISS_2002_2015;&lt;BR /&gt; 58 BY cpsc_case_no trmt_date;&lt;BR /&gt; 59 RUN;&lt;BR /&gt; &lt;BR /&gt; ERROR: Insufficient space in file WORK.NEISS_SUBSET_1.DATA.&lt;BR /&gt; ERROR: File WORK.NEISS_SUBSET_1.DATA is damaged. I/O processing did not complete.&lt;BR /&gt; NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt; NOTE: There were 896761 observations read from the data set WORK.NEISS_MERGE.&lt;BR /&gt; NOTE: There were 1 observations read from the data set WORK.NEISS_2002_2015.&lt;BR /&gt; WARNING: The data set WORK.NEISS_SUBSET_1 may be incomplete. When this step was stopped there were 896760 observations and 28 &lt;BR /&gt; variables.&lt;BR /&gt; WARNING: Data set WORK.NEISS_SUBSET_1 was not replaced because this step was stopped.&lt;BR /&gt; NOTE: DATA statement used (Total process time):&lt;BR /&gt; real time 0.90 seconds&lt;BR /&gt; cpu time 0.89 seconds&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; 60 &lt;BR /&gt; 61 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;BR /&gt; 73&lt;/P&gt;</description>
      <pubDate>Tue, 25 Oct 2016 14:45:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-Insufficient-space-in-file-is-damaged-I-O-processing-did/m-p/307143#M65741</guid>
      <dc:creator>_maldini_</dc:creator>
      <dc:date>2016-10-25T14:45:09Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Insufficient space in file. is damaged. I/O processing did not complete.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-Insufficient-space-in-file-is-damaged-I-O-processing-did/m-p/307144#M65742</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp﻿&lt;/a&gt;&amp;nbsp;I'm not sure I follow. Could you please elaborate? Thanks!&lt;/P&gt;</description>
      <pubDate>Tue, 25 Oct 2016 14:47:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-Insufficient-space-in-file-is-damaged-I-O-processing-did/m-p/307144#M65742</guid>
      <dc:creator>_maldini_</dc:creator>
      <dc:date>2016-10-25T14:47:14Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Insufficient space in file. is damaged. I/O processing did not complete.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-Insufficient-space-in-file-is-damaged-I-O-processing-did/m-p/307284#M65782</link>
      <description>&lt;P&gt;I mean take&amp;nbsp;&lt;/P&gt;
&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;&lt;SPAN class="token string"&gt;'/folders/myfolders/'&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;as WORK library. All the table will appear in /folders/myfolders/&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Oct 2016 02:08:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-Insufficient-space-in-file-is-damaged-I-O-processing-did/m-p/307284#M65782</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-10-26T02:08:51Z</dc:date>
    </item>
  </channel>
</rss>

