<?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 Error trying to update a VSAM file in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Error-trying-to-update-a-VSAM-file/m-p/868448#M343064</link>
    <description>&lt;P&gt;Hello folks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to update a VSAM file, however I am getting the error below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ERROR: Record not found, or the RBA is not found in the buffer pool.&lt;BR /&gt;ERROR: VSAM (GET) logical I/O error occurred on fileref DIREICL, rc = 8 (decimal), feedback code = 16 (decimal).&lt;BR /&gt;ERROR: Undetermined I/O failure.&lt;BR /&gt;FATAL: Unrecoverable I/O error detected in the execution of the DATA step program. Aborted during the EXECUTION phase.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can anyone help me? I think this error is related to the VSAM file key (KSDS), but I am not sure. Is there any way for me to check the position of the columns in the VSAM file?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks everyone!&lt;/P&gt;</description>
    <pubDate>Thu, 06 Apr 2023 12:49:06 GMT</pubDate>
    <dc:creator>Guiluiz</dc:creator>
    <dc:date>2023-04-06T12:49:06Z</dc:date>
    <item>
      <title>Error trying to update a VSAM file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Error-trying-to-update-a-VSAM-file/m-p/868448#M343064</link>
      <description>&lt;P&gt;Hello folks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to update a VSAM file, however I am getting the error below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ERROR: Record not found, or the RBA is not found in the buffer pool.&lt;BR /&gt;ERROR: VSAM (GET) logical I/O error occurred on fileref DIREICL, rc = 8 (decimal), feedback code = 16 (decimal).&lt;BR /&gt;ERROR: Undetermined I/O failure.&lt;BR /&gt;FATAL: Unrecoverable I/O error detected in the execution of the DATA step program. Aborted during the EXECUTION phase.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can anyone help me? I think this error is related to the VSAM file key (KSDS), but I am not sure. Is there any way for me to check the position of the columns in the VSAM file?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks everyone!&lt;/P&gt;</description>
      <pubDate>Thu, 06 Apr 2023 12:49:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Error-trying-to-update-a-VSAM-file/m-p/868448#M343064</guid>
      <dc:creator>Guiluiz</dc:creator>
      <dc:date>2023-04-06T12:49:06Z</dc:date>
    </item>
    <item>
      <title>Re: Error trying to update a VSAM file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Error-trying-to-update-a-VSAM-file/m-p/868534#M343108</link>
      <description>&lt;P&gt;I'd suggest opening a Tech Support track for this. AFAIK, there are very few mainframe SAS users active in the Community and its so many years since I last had anything to do with VSAM files.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You should post your complete SAS log of the step producing these errors though. Without your source code we have no idea how to help.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Apr 2023 21:28:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Error-trying-to-update-a-VSAM-file/m-p/868534#M343108</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2023-04-06T21:28:07Z</dc:date>
    </item>
    <item>
      <title>Re: Error trying to update a VSAM file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Error-trying-to-update-a-VSAM-file/m-p/868665#M343161</link>
      <description>&lt;P&gt;Thanks for trying to help, I am attaching part of the log.&lt;/P&gt;</description>
      <pubDate>Fri, 07 Apr 2023 20:13:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Error-trying-to-update-a-VSAM-file/m-p/868665#M343161</guid>
      <dc:creator>Guiluiz</dc:creator>
      <dc:date>2023-04-07T20:13:34Z</dc:date>
    </item>
    <item>
      <title>Re: Error trying to update a VSAM file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Error-trying-to-update-a-VSAM-file/m-p/868671#M343165</link>
      <description>&lt;P&gt;No need to attach a file to share text.&amp;nbsp; Just click the Insert Code button and paste the text.&lt;/P&gt;
&lt;PRE&gt; 
  
 59          DATA _NULL_;
 60         
 61           SET UNION;
 62         
 63           VEVSCLA = NOR;
 64         
 65           INFILE VSAMDS VSAM  FDBK=CODER  KEY=VEVSCLA;
 66         
 67           IF CODER &amp;gt; 4
 68           THEN DO;
 69                _ERROR_ = 0;
 70                ABORT RETURN 1420;
 71                STOP;
 72           END;
 73         
 74           INPUT;      
 75         
 76           FILE VSAMDS;
 77           PUT  @001    _INFILE_
 78                @&amp;amp;PCC   TCOD 1.;
 79         
 80          RUN;
  
14                                                          The SAS System                             15:47 Wednesday, April 5, 2023
  
 NOTE: The file/infile DIREICL is:
       Dsname=DXA.SALIDA.REPRO.KSDS,
       Volume=XF5078,Disp=SHR,Unit=3390,Type=INDEXED,
       Spanned=NO,Recordsize=(.,225),Amp=('AMORG'),
       Records=28427,Keys=(11 0)
  
 ERROR:  Record not found, or the RBA is not found in the buffer pool.
 ERROR: VSAM (GET) logical I/O error occurred on fileref DIREICL, rc = 8 (decimal), feedback code = 16 (decimal).
 ERROR: Undetermined I/O failure.
 FATAL: Unrecoverable I/O error detected in the execution of the DATA step program.  Aborted during the EXECUTION phase.
 NOTE: 0 records were read from the infile DIREICL.
 NOTE: 0 records were written to the file DIREICL.
 NOTE: The SAS System stopped processing this step because of errors.
 NOTE: There were 1 observations read from the data set WORK.UNION.
 NOTE: The DATA statement used 0.02 CPU seconds and 17084K.
  
 NOTE: The address space has used a maximum of 624K below the line and 19416K above the line.
  
  
 ERROR: Errors printed on page 4.
  
 NOTE: The SAS session used 0.27 CPU seconds and 18748K.
  
 NOTE: The address space has used a maximum of 624K below the line and 19416K above the line.
  
 NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414
&lt;/PRE&gt;</description>
      <pubDate>Fri, 07 Apr 2023 23:28:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Error-trying-to-update-a-VSAM-file/m-p/868671#M343165</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2023-04-07T23:28:18Z</dc:date>
    </item>
    <item>
      <title>Re: Error trying to update a VSAM file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Error-trying-to-update-a-VSAM-file/m-p/868965#M343280</link>
      <description>&lt;P&gt;Can you successfully read this VSAM file? SImplify your program just to read the file and see if that works.&lt;/P&gt;</description>
      <pubDate>Mon, 10 Apr 2023 23:13:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Error-trying-to-update-a-VSAM-file/m-p/868965#M343280</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2023-04-10T23:13:18Z</dc:date>
    </item>
  </channel>
</rss>

