<?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: Could not open data file: ERROR: I/O processing did not complete in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Could-not-open-data-file-ERROR-I-O-processing-did-not-complete/m-p/274730#M269562</link>
    <description>Thanks for the reply Chris. How do I check config file (SASV9.CFG) you mentioned. Please guide me</description>
    <pubDate>Thu, 02 Jun 2016 16:20:38 GMT</pubDate>
    <dc:creator>danwarags</dc:creator>
    <dc:date>2016-06-02T16:20:38Z</dc:date>
    <item>
      <title>Could not open data file: ERROR: I/O processing did not complete</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Could-not-open-data-file-ERROR-I-O-processing-did-not-complete/m-p/274093#M269558</link>
      <description>&lt;P&gt;I am trying to open a large data set which is in a format .sas7bdat (1.2TB), but I am getting this error. It says ' Could not open the data file: File is damaged. I/O processing did not complete. How do I fix this error&lt;/P&gt;</description>
      <pubDate>Tue, 31 May 2016 13:51:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Could-not-open-data-file-ERROR-I-O-processing-did-not-complete/m-p/274093#M269558</guid>
      <dc:creator>danwarags</dc:creator>
      <dc:date>2016-05-31T13:51:42Z</dc:date>
    </item>
    <item>
      <title>Re: Could not open data file: ERROR: I/O processing did not complete</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Could-not-open-data-file-ERROR-I-O-processing-did-not-complete/m-p/274101#M269559</link>
      <description>&lt;P&gt;What did you mean by open?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm not sure trying to view a 1.2TB file is a good idea. Take a subset and view that perhaps?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can try repairing the dataset using proc datasets but if the file is damaged it may not be recoverable.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Proc datasets library=work nolist nodetails;
Repair brokenData;
Run;quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 31 May 2016 14:26:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Could-not-open-data-file-ERROR-I-O-processing-did-not-complete/m-p/274101#M269559</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-05-31T14:26:53Z</dc:date>
    </item>
    <item>
      <title>Re: Could not open data file: ERROR: I/O processing did not complete</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Could-not-open-data-file-ERROR-I-O-processing-did-not-complete/m-p/274107#M269560</link>
      <description>&lt;P&gt;I have seen similar when the machine on which I was working ran out of disk space when trying to open&amp;nbsp;a large dataset.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You will need to find the drive on which your SAS work folder resides and check the available space.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To find out where it is check in your config file (SASV9.CFG) and look for the line starting -WORK.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If there is sufficient space then it could be insufficient memory.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;HTH&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Tue, 31 May 2016 14:34:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Could-not-open-data-file-ERROR-I-O-processing-did-not-complete/m-p/274107#M269560</guid>
      <dc:creator>rivieralad</dc:creator>
      <dc:date>2016-05-31T14:34:58Z</dc:date>
    </item>
    <item>
      <title>Re: Could not open data file: ERROR: I/O processing did not complete</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Could-not-open-data-file-ERROR-I-O-processing-did-not-complete/m-p/274728#M269561</link>
      <description>Hello Reeza,&lt;BR /&gt;&lt;BR /&gt;Thanks for the reply. The SAS dataset (1.3TB) needs to be analyzed. So, working on the subset of the data might not help me. I wanted to check the number of variables inside the large dataset by running the CONTENTS procedure. As the dataset is large, there is an error showing that the 'File cannot be processed because its size is limited to 2G-1 observations on this host'. How do I fix this problem</description>
      <pubDate>Thu, 02 Jun 2016 16:12:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Could-not-open-data-file-ERROR-I-O-processing-did-not-complete/m-p/274728#M269561</guid>
      <dc:creator>danwarags</dc:creator>
      <dc:date>2016-06-02T16:12:52Z</dc:date>
    </item>
    <item>
      <title>Re: Could not open data file: ERROR: I/O processing did not complete</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Could-not-open-data-file-ERROR-I-O-processing-did-not-complete/m-p/274730#M269562</link>
      <description>Thanks for the reply Chris. How do I check config file (SASV9.CFG) you mentioned. Please guide me</description>
      <pubDate>Thu, 02 Jun 2016 16:20:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Could-not-open-data-file-ERROR-I-O-processing-did-not-complete/m-p/274730#M269562</guid>
      <dc:creator>danwarags</dc:creator>
      <dc:date>2016-06-02T16:20:38Z</dc:date>
    </item>
    <item>
      <title>Re: Could not open data file: ERROR: I/O processing did not complete</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Could-not-open-data-file-ERROR-I-O-processing-did-not-complete/m-p/274747#M269563</link>
      <description>&lt;P&gt;I wasn't aware that SAS ever had an limit. What is your SAS setup?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is this a SAS dataset or a dataset on a server?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Jun 2016 17:44:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Could-not-open-data-file-ERROR-I-O-processing-did-not-complete/m-p/274747#M269563</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-06-02T17:44:06Z</dc:date>
    </item>
    <item>
      <title>Re: Could not open data file: ERROR: I/O processing did not complete</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Could-not-open-data-file-ERROR-I-O-processing-did-not-complete/m-p/274809#M269564</link>
      <description>Thanks reeza.The SAS dataset is on my local drive and not on a server. I tried searching this error on google and found that the SAS only supports 2G-1 observations. The link I found this information is below:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://support.sas.com/kb/36/112.html" target="_blank"&gt;http://support.sas.com/kb/36/112.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;I dont know what to do to fix this problem. But I really need to get a variable list from this large dataset and do analysis on them.&lt;BR /&gt;</description>
      <pubDate>Thu, 02 Jun 2016 20:58:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Could-not-open-data-file-ERROR-I-O-processing-did-not-complete/m-p/274809#M269564</guid>
      <dc:creator>danwarags</dc:creator>
      <dc:date>2016-06-02T20:58:40Z</dc:date>
    </item>
    <item>
      <title>Re: Could not open data file: ERROR: I/O processing did not complete</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Could-not-open-data-file-ERROR-I-O-processing-did-not-complete/m-p/274813#M269565</link>
      <description>&lt;P&gt;First off,I didn't know you could&amp;nbsp;get a local machine with&amp;nbsp; &amp;gt;1.2 TB hard disk space &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Second, to get just a variable list, can you try this?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;*****************************************************&lt;/P&gt;
&lt;P&gt;data varlist;&lt;/P&gt;
&lt;P&gt;set &amp;lt;library.datasetname&amp;gt; obs=1;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc contents data=varlist;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;*****************************************************&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As for the SASV9.CFG file, you should look for it in your SAS s/w folder. Try C:\Program Files (x86)\SASFoundation\9.2\sasv9.cfg .. or something similar, once you get to the path, it musn't be difficult to find. Unfortunately, I don't have a local installation.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Check this article - &lt;A href="http://support.sas.com/documentation/cdl/en/hostwin/63285/HTML/default/viewer.htm#a000104286.htm#worklib" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/hostwin/63285/HTML/default/viewer.htm#a000104286.htm#worklib&lt;/A&gt; and search for 'SAS Default Folder Structure'. The default path is listed there.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Now once you find it, how you determine 'sufficient' space, I cannot say.&lt;/P&gt;</description>
      <pubDate>Thu, 02 Jun 2016 21:21:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Could-not-open-data-file-ERROR-I-O-processing-did-not-complete/m-p/274813#M269565</guid>
      <dc:creator>PoornimaRavishankar</dc:creator>
      <dc:date>2016-06-02T21:21:58Z</dc:date>
    </item>
    <item>
      <title>Re: Could not open data file: ERROR: I/O processing did not complete</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Could-not-open-data-file-ERROR-I-O-processing-did-not-complete/m-p/274828#M269566</link>
      <description>&lt;P&gt;What type of analysis are you planning to do. The link you provided has some workarounds listed, have you tried them and they don't work.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you take a sample you'll still get the list of variables and can develop your code. Any type of processing is going to take time...and space. Will you have enough space to work with the data, since you usually need 2-3 times the space to process the data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You may want to contact tech support to get some help specifically for your situation.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Jun 2016 22:40:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Could-not-open-data-file-ERROR-I-O-processing-did-not-complete/m-p/274828#M269566</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-06-02T22:40:26Z</dc:date>
    </item>
    <item>
      <title>Re: Could not open data file: ERROR: I/O processing did not complete</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Could-not-open-data-file-ERROR-I-O-processing-did-not-complete/m-p/274931#M269567</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sorry for delay in replying, been away from office.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can find this information in previous messages if you search Communities but to save time:&lt;/P&gt;
&lt;P&gt;1. Run proc options:&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&lt;FONT color="#000080" size="2"&gt;proc options option = config;&lt;/FONT&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;FONT color="#000080" size="2"&gt;run;&lt;/FONT&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2. Should give you something similar to below:&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&lt;FONT color="#000080" size="2"&gt;1&amp;nbsp;&amp;nbsp;&amp;nbsp; proc options option = config;&lt;/FONT&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;FONT color="#000080" size="2"&gt;2&amp;nbsp;&amp;nbsp;&amp;nbsp; run;&lt;/FONT&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;EM&gt;&lt;FONT color="#000080" size="2"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; SAS (r) Proprietary Software Release 9.1&amp;nbsp; TS1M3&lt;/FONT&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;EM&gt;&lt;FONT color="#000080" size="2"&gt;&amp;nbsp;CONFIG=C:\Program Files\SAS\SAS 9.1\nls\en\SASV9.CFG&lt;/FONT&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;FONT color="#000080" size="2"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Specifies a SAS configuration file.&lt;/FONT&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;FONT color="#000080" size="2"&gt;NOTE: PROCEDURE OPTIONS used (Total process time):&lt;/FONT&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;FONT color="#000080" size="2"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; real time&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.24 seconds&lt;/FONT&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&lt;FONT color="#000080" size="2"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cpu time&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.00 seconds&lt;/FONT&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;3. Open up the config file specified.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;4. Look for the line starting -WORK, as in the following example&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000080" size="2"&gt;&lt;EM&gt;/* DO NOT EDIT BELOW THIS LINE - INSTALL Application edits below this line */&lt;BR /&gt;/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */&lt;BR /&gt;-SET sasext0 "C:\Program Files\SAS\SAS 9.1"&lt;BR /&gt;-SET sasroot "C:\Program Files\SAS\SAS 9.1"&lt;BR /&gt;-SET sasext1 "C:\Program Files\SAS\SAS 9.1\nls"&lt;BR /&gt;/* Setup the MYSASFILES system variable&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; */&lt;BR /&gt;-SET MYSASFILES "?CSIDL_PERSONAL\My SAS Files\9.1"&lt;BR /&gt;/* Setup the default SAS System user profile folder&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; */&lt;BR /&gt;-SASUSER "?CSIDL_PERSONAL\My SAS Files\9.1"&lt;BR /&gt;/* Setup the default SAS System user work folder&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; */&lt;BR /&gt;-WORK "!TEMP\SAS Temporary Files"&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000" size="2"&gt;5. Navigate to the folder&amp;nbsp; (if as above it shows !TEMP\... this will be your temporary files location e.g. C:\Documents and Settings\&lt;FONT color="#000080"&gt;&lt;EM&gt;userid&lt;/EM&gt;&lt;/FONT&gt;\Local Settings\Temp). The space available on the drive should be visible in the status bar at the bottom left of Windows Explorer. If there isn't enough space, you can specify a new work location following the instructions in SAS.&lt;BR /&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000" size="2"&gt;Cheers&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000" size="2"&gt;Chris&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Jun 2016 12:49:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Could-not-open-data-file-ERROR-I-O-processing-did-not-complete/m-p/274931#M269567</guid>
      <dc:creator>rivieralad</dc:creator>
      <dc:date>2016-06-03T12:49:30Z</dc:date>
    </item>
  </channel>
</rss>

