<?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: Fatal ODS error in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Fatal-ODS-error/m-p/332382#M17918</link>
    <description>HI:&lt;BR /&gt;  I generally report Fatal errors to Tech Support. Given your upcoming change from 9.2 to 9.4, the problem may go away, but that is something that Tech Support is more likely to be able to tell you. Without code or data to test, nobody can try to replicate your issue.&lt;BR /&gt;&lt;BR /&gt;cynthia</description>
    <pubDate>Mon, 13 Feb 2017 22:15:52 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2017-02-13T22:15:52Z</dc:date>
    <item>
      <title>Fatal ODS error</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Fatal-ODS-error/m-p/332370#M17917</link>
      <description>&lt;P&gt;Hi All,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am running a SAS program that converts report to PDF.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The report is big (150807 lines) and i getting "Out of memory error".&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;we are using SAS 9.2 and we will soon migrate to 9.4 version.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;when I run the same PDF convsion program with test 9.4 version, it runs without any issue.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Did anyone face this issue? or do anyone has solution for above problem?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;ERROR: Out of memory.
 ERROR: Fatal ODS error has occurred. Unable to continue processing this output destination.
 ERROR: Output Delivery System failure detected.  Aborted during the EXECUTION phase.
 NOTE: The SAS System stopped processing this step because of errors.
 ERROR: Fatal ODS error has occurred. Unable to continue processing this output destination.
 NOTE: Traceback called&lt;/PRE&gt;</description>
      <pubDate>Mon, 13 Feb 2017 21:50:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Fatal-ODS-error/m-p/332370#M17917</guid>
      <dc:creator>gskn4u</dc:creator>
      <dc:date>2017-02-13T21:50:21Z</dc:date>
    </item>
    <item>
      <title>Re: Fatal ODS error</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Fatal-ODS-error/m-p/332382#M17918</link>
      <description>HI:&lt;BR /&gt;  I generally report Fatal errors to Tech Support. Given your upcoming change from 9.2 to 9.4, the problem may go away, but that is something that Tech Support is more likely to be able to tell you. Without code or data to test, nobody can try to replicate your issue.&lt;BR /&gt;&lt;BR /&gt;cynthia</description>
      <pubDate>Mon, 13 Feb 2017 22:15:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Fatal-ODS-error/m-p/332382#M17918</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2017-02-13T22:15:52Z</dc:date>
    </item>
    <item>
      <title>Re: Fatal ODS error</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Fatal-ODS-error/m-p/332389#M17919</link>
      <description>&lt;P&gt;I already involved tech support but not much help.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;total lines in input is&amp;nbsp;150807.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Below is the code:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;OPTIONS ERRABEND NONUMBER NOMPRINT MAUTOSOURCE SGEN &lt;BR /&gt; FILESPPRI=3900 FILESPSEC=3900 ; &amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;ODS PDF FILE=OUT1 NOTOC;                          
DATA _NULL_;                                        
  INFILE IN01 TRUNCOVER;                          
  INPUT @001 LI01       $CHAR169. ;                 
  FILE PRINT LL=LI LS=169            NOTITLES;      
  PUT   @001 LI01       $CHAR169. ;                 
                                                    
RUN;                                                
ODS PDF CLOSE;                                      &lt;/PRE&gt;</description>
      <pubDate>Mon, 13 Feb 2017 22:32:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Fatal-ODS-error/m-p/332389#M17919</guid>
      <dc:creator>gskn4u</dc:creator>
      <dc:date>2017-02-13T22:32:18Z</dc:date>
    </item>
    <item>
      <title>Re: Fatal ODS error</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Fatal-ODS-error/m-p/332402#M17921</link>
      <description>&lt;P&gt;What kind of data is in that input file? Is there anything other than simple printable text? If you have something that PDF would interpret as a control code that may be an issue.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How about:&lt;/P&gt;
&lt;PRE&gt;ODS PDF FILE=OUT1 NOTOC;                          
DATA work.temp;                                        
  INFILE IN01 TRUNCOVER;                          
  INPUT @001 LI01       $CHAR169. ;
run;
proc print data= work.temp noobs;
  var LI01  ;                 
                                                    
RUN;                                                
ODS PDF CLOSE; &lt;/PRE&gt;
&lt;P&gt;I tried something similar to your code just writing out a single word a bunch of times and generated&amp;nbsp;what looked like an ieframe.dll error. That dll is involved with rendering HTML, so I suspect that the&amp;nbsp;ODS PDF engine was looking for some html to render into PDF and failed.&amp;nbsp;It did work to export one line but after the error I get nothing but printer&amp;nbsp;errors for PDF. So it may be that the problem becomes a corrupted print subsystem.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or perhaps&lt;/P&gt;
&lt;PRE&gt;ODS PDF FILE=OUT1 NOTOC;                          
DATA _NULL_;                                        
  INFILE IN01 TRUNCOVER;                          
  INPUT @001 LI01       $CHAR169. ;                 
  FILE PRINT ODS;      
  PUT   @001 LI01       $CHAR169. ;                 
                                                    
RUN;                                                
ODS PDF CLOSE; &lt;/PRE&gt;
&lt;P&gt;I am not sure why you want to attempt to use plaintext settings such as LS and NOTITLE&amp;nbsp;when ODS does not recognize them.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Feb 2017 23:27:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Fatal-ODS-error/m-p/332402#M17921</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2017-02-13T23:27:13Z</dc:date>
    </item>
    <item>
      <title>Re: Fatal ODS error</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Fatal-ODS-error/m-p/332426#M17923</link>
      <description>&lt;P&gt;I am getting error "ERROR: Out of space writing to file SYS00003. &amp;nbsp;" when I run&amp;nbsp;below code:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;ODS PDF FILE=OUT1 NOTOC;                          
DATA work.temp;                                        
  INFILE IN01 TRUNCOVER;                          
  INPUT @001 LI01       $CHAR169. ;
run;
proc print data= work.temp noobs;
  var LI01  ;                 
                                                    
RUN;                                                
ODS PDF CLOSE; &lt;/PRE&gt;</description>
      <pubDate>Mon, 13 Feb 2017 23:48:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Fatal-ODS-error/m-p/332426#M17923</guid>
      <dc:creator>gskn4u</dc:creator>
      <dc:date>2017-02-13T23:48:39Z</dc:date>
    </item>
    <item>
      <title>Re: Fatal ODS error</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Fatal-ODS-error/m-p/332431#M17925</link>
      <description>&lt;P&gt;I would try the File Print ODS first.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You may have to restart your SAS session. As I mentioned after getting an error message from this the print subsytem appears corrupted and won't print anything I tried.&lt;/P&gt;</description>
      <pubDate>Mon, 13 Feb 2017 23:58:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Fatal-ODS-error/m-p/332431#M17925</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2017-02-13T23:58:29Z</dc:date>
    </item>
    <item>
      <title>Re: Fatal ODS error</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Fatal-ODS-error/m-p/332436#M17926</link>
      <description>&lt;P&gt;Since you are getting an Out of Memory error, it would be worthwhile checking your MEMSIZE setting in 9.2 versus 9.4. If the 9.4 setting is a lot higher that may explain why 9.4 works and 9.2 doesn't. Use PROC OPTIONS to check the MEMSIZE value.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Feb 2017 00:28:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Fatal-ODS-error/m-p/332436#M17926</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2017-02-14T00:28:27Z</dc:date>
    </item>
    <item>
      <title>Re: Fatal ODS error</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Fatal-ODS-error/m-p/332440#M17927</link>
      <description>&lt;P&gt;&lt;SPAN&gt;thank you.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;File Print ODS worked but it is printing as tables, column, date etc which is not needed. Also each line is broken into 2 lines.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I just need to read the input (169 chars) and write to PDS (169 chars).&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Feb 2017 00:38:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Fatal-ODS-error/m-p/332440#M17927</guid>
      <dc:creator>gskn4u</dc:creator>
      <dc:date>2017-02-14T00:38:26Z</dc:date>
    </item>
    <item>
      <title>Re: Fatal ODS error</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Fatal-ODS-error/m-p/332441#M17928</link>
      <description>&lt;P&gt;&amp;nbsp;SAS 9.2&amp;nbsp;&lt;/P&gt;
&lt;P&gt;MEMSIZE=142057472 Limit on the total amount of memory to be used by the SAS System&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SAS 9.4&amp;nbsp;&lt;/P&gt;
&lt;P&gt;MEMSIZE=142057472 Specifies the limit on the amount of virtual memory that can be used during a SAS session.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Feb 2017 00:44:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Fatal-ODS-error/m-p/332441#M17928</guid>
      <dc:creator>gskn4u</dc:creator>
      <dc:date>2017-02-14T00:44:53Z</dc:date>
    </item>
    <item>
      <title>Re: Fatal ODS error</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Fatal-ODS-error/m-p/332451#M17929</link>
      <description>&lt;P&gt;OK, we can discount&amp;nbsp;MEMSIZE as a possible cause. There has been a vast amount of development in the ODS space between 9.2 and 9.4 so it's not altogether surprising that a large ODS report has problems in 9.2 but not in 9.4. In my experience ODS is very resource hungry, so I tend to avoid it for very large outputs.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Feb 2017 02:50:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Fatal-ODS-error/m-p/332451#M17929</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2017-02-14T02:50:13Z</dc:date>
    </item>
  </channel>
</rss>

