<?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 SAS Dataset Read Errors in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/SAS-Dataset-Read-Errors/m-p/359367#M84505</link>
    <description>&lt;P&gt;I'm receiving&amp;nbsp;errors trying to read SAS datasets into base SAS 9.4 using the libname statement and data step. I have received different errors on separate runs of the same code, which I'll paste below. It's not the data itself because I've received these errors on a number of unrelated SAS datasets.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ERROR: File JDRF.ANALYSIS_3_2_17.DATA is damaged. I/O processing did not complete.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ERROR: Invalid header on file JDRF.ANALYSIS_3_2_17.DATA.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ERROR: Windows error code: 50 in hc_disk_normal_read for V:\research\Alwood\JDRF ACC\Mark&lt;BR /&gt;Peakman Data\analysis_3_2_17.sas7bdat, The request is not supported.&lt;BR /&gt;85 data biomarkers;&lt;BR /&gt;86 set jdrf.analysis_3_2_17;&lt;BR /&gt;ERROR: File JDRF.ANALYSIS_3_2_17.DATA is damaged. I/O processing did not complete.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;An example of the code I'm using is below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;libname jdrf "V:\research\Alwood\JDRF ACC\Mark Peakman Data";&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;data biomarkers;&lt;BR /&gt;set jdrf.analysis_3_2_17;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any assistance in resolving this matter will be greatly appreciated!&lt;/P&gt;</description>
    <pubDate>Wed, 17 May 2017 13:35:37 GMT</pubDate>
    <dc:creator>lyssaw519</dc:creator>
    <dc:date>2017-05-17T13:35:37Z</dc:date>
    <item>
      <title>SAS Dataset Read Errors</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-Dataset-Read-Errors/m-p/359367#M84505</link>
      <description>&lt;P&gt;I'm receiving&amp;nbsp;errors trying to read SAS datasets into base SAS 9.4 using the libname statement and data step. I have received different errors on separate runs of the same code, which I'll paste below. It's not the data itself because I've received these errors on a number of unrelated SAS datasets.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ERROR: File JDRF.ANALYSIS_3_2_17.DATA is damaged. I/O processing did not complete.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ERROR: Invalid header on file JDRF.ANALYSIS_3_2_17.DATA.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ERROR: Windows error code: 50 in hc_disk_normal_read for V:\research\Alwood\JDRF ACC\Mark&lt;BR /&gt;Peakman Data\analysis_3_2_17.sas7bdat, The request is not supported.&lt;BR /&gt;85 data biomarkers;&lt;BR /&gt;86 set jdrf.analysis_3_2_17;&lt;BR /&gt;ERROR: File JDRF.ANALYSIS_3_2_17.DATA is damaged. I/O processing did not complete.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;An example of the code I'm using is below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;libname jdrf "V:\research\Alwood\JDRF ACC\Mark Peakman Data";&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;data biomarkers;&lt;BR /&gt;set jdrf.analysis_3_2_17;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any assistance in resolving this matter will be greatly appreciated!&lt;/P&gt;</description>
      <pubDate>Wed, 17 May 2017 13:35:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-Dataset-Read-Errors/m-p/359367#M84505</guid>
      <dc:creator>lyssaw519</dc:creator>
      <dc:date>2017-05-17T13:35:37Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Dataset Read Errors</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-Dataset-Read-Errors/m-p/359379#M84511</link>
      <description>&lt;P&gt;Try REPAIR it.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname x v9 '/folders/myfolders/';

proc datasets lib=x;
repair have2 ;
quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 17 May 2017 14:01:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-Dataset-Read-Errors/m-p/359379#M84511</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2017-05-17T14:01:44Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Dataset Read Errors</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-Dataset-Read-Errors/m-p/359407#M84518</link>
      <description>&lt;P&gt;That worked, thanks so much!!!&lt;/P&gt;</description>
      <pubDate>Wed, 17 May 2017 15:20:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-Dataset-Read-Errors/m-p/359407#M84518</guid>
      <dc:creator>lyssaw519</dc:creator>
      <dc:date>2017-05-17T15:20:10Z</dc:date>
    </item>
  </channel>
</rss>

