<?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: The SAS system stopped processing this step because of insufficient memory. in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/The-SAS-system-stopped-processing-this-step-because-of/m-p/745132#M38903</link>
    <description>&lt;P&gt;I guess you have a damaged xlsx file. Make sure that it does not exist before you issue the LIBNAME.&lt;/P&gt;
&lt;P&gt;After deleting the file, please run the code again and post the whole log using the &amp;lt;/&amp;gt; button.&lt;/P&gt;</description>
    <pubDate>Wed, 02 Jun 2021 11:11:11 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2021-06-02T11:11:11Z</dc:date>
    <item>
      <title>The SAS system stopped processing this step because of insufficient memory.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/The-SAS-system-stopped-processing-this-step-because-of/m-p/745108#M38895</link>
      <description>Hi All,&lt;BR /&gt;&lt;BR /&gt;I am using Ods excel to create a excel report but i am getting this error instead(mentioned in the subject line).&lt;BR /&gt;The code i am using is&lt;BR /&gt;Ods excel file= filepath/abc.xlsx style=htmlblue&lt;BR /&gt;Options(sheet_name=xyz);&lt;BR /&gt;Proc print data=test;&lt;BR /&gt;Run;&lt;BR /&gt;Ods excel(sheet_name=xyz1);&lt;BR /&gt;Proc print data=test2;&lt;BR /&gt;Run;&lt;BR /&gt;Ods excel close;&lt;BR /&gt;I tried using the memsize=max option but the option is throwing a warning " Option memsize should be used at the start of the sas system. Option ignored.&lt;BR /&gt;I relaunched the session but the same result.&lt;BR /&gt;&lt;BR /&gt;Kindly help me out on this.</description>
      <pubDate>Wed, 02 Jun 2021 09:19:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/The-SAS-system-stopped-processing-this-step-because-of/m-p/745108#M38895</guid>
      <dc:creator>Programmer26</dc:creator>
      <dc:date>2021-06-02T09:19:27Z</dc:date>
    </item>
    <item>
      <title>Re: The SAS system stopped processing this step because of insufficient memory.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/The-SAS-system-stopped-processing-this-step-because-of/m-p/745115#M38897</link>
      <description>&lt;P&gt;How many observations and variables do those datasets have, and how large are the observation sizes?&lt;/P&gt;
&lt;P&gt;(run PROC CONTENTS)&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jun 2021 10:28:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/The-SAS-system-stopped-processing-this-step-because-of/m-p/745115#M38897</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-06-02T10:28:22Z</dc:date>
    </item>
    <item>
      <title>Re: The SAS system stopped processing this step because of insufficient memory.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/The-SAS-system-stopped-processing-this-step-because-of/m-p/745118#M38899</link>
      <description>Observations=220k&lt;BR /&gt;Vars=6</description>
      <pubDate>Wed, 02 Jun 2021 10:33:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/The-SAS-system-stopped-processing-this-step-because-of/m-p/745118#M38899</guid>
      <dc:creator>Programmer26</dc:creator>
      <dc:date>2021-06-02T10:33:24Z</dc:date>
    </item>
    <item>
      <title>Re: The SAS system stopped processing this step because of insufficient memory.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/The-SAS-system-stopped-processing-this-step-because-of/m-p/745120#M38900</link>
      <description>Obs=227920&lt;BR /&gt;Var=6&lt;BR /&gt;Obs length=161</description>
      <pubDate>Wed, 02 Jun 2021 10:35:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/The-SAS-system-stopped-processing-this-step-because-of/m-p/745120#M38900</guid>
      <dc:creator>Programmer26</dc:creator>
      <dc:date>2021-06-02T10:35:57Z</dc:date>
    </item>
    <item>
      <title>Re: The SAS system stopped processing this step because of insufficient memory.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/The-SAS-system-stopped-processing-this-step-because-of/m-p/745122#M38901</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/383419"&gt;@Programmer26&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Observations=220k&lt;BR /&gt;Vars=6&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;That's WAY beyond what constitutes a report. Run a simple export using a LIBNAME:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname myex xlsx "filepath/abc.xlsx";

data myex.xyz;
set test;
run;

data myex.xyz1;
set test2;
run;

libname myex clear;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;ODS EXCEL will add all the formatting tags for every cell, which are not necessary when exporting just data.&lt;/P&gt;
&lt;P&gt;Since that needs to be kept as text (XML) in memory before the compressed file is written, you run out of memory.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jun 2021 10:41:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/The-SAS-system-stopped-processing-this-step-because-of/m-p/745122#M38901</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-06-02T10:41:08Z</dc:date>
    </item>
    <item>
      <title>Re: The SAS system stopped processing this step because of insufficient memory.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/The-SAS-system-stopped-processing-this-step-because-of/m-p/745126#M38902</link>
      <description>Kurt,&lt;BR /&gt;When i am using the code as you mentioned it is throwing a error stating&lt;BR /&gt;Could not find 'workbook.xml.rels'&lt;BR /&gt;Error: file myex.xyz does not exist.</description>
      <pubDate>Wed, 02 Jun 2021 11:04:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/The-SAS-system-stopped-processing-this-step-because-of/m-p/745126#M38902</guid>
      <dc:creator>Programmer26</dc:creator>
      <dc:date>2021-06-02T11:04:23Z</dc:date>
    </item>
    <item>
      <title>Re: The SAS system stopped processing this step because of insufficient memory.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/The-SAS-system-stopped-processing-this-step-because-of/m-p/745132#M38903</link>
      <description>&lt;P&gt;I guess you have a damaged xlsx file. Make sure that it does not exist before you issue the LIBNAME.&lt;/P&gt;
&lt;P&gt;After deleting the file, please run the code again and post the whole log using the &amp;lt;/&amp;gt; button.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jun 2021 11:11:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/The-SAS-system-stopped-processing-this-step-because-of/m-p/745132#M38903</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-06-02T11:11:11Z</dc:date>
    </item>
    <item>
      <title>Re: The SAS system stopped processing this step because of insufficient memory.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/The-SAS-system-stopped-processing-this-step-because-of/m-p/745145#M38905</link>
      <description>Thank you Kurt.&lt;BR /&gt;I checked and there were multiple files stored by the same name in that folder.&lt;BR /&gt;It is working fine now.&lt;BR /&gt;&lt;BR /&gt;Thank you for the help!! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 02 Jun 2021 11:47:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/The-SAS-system-stopped-processing-this-step-because-of/m-p/745145#M38905</guid>
      <dc:creator>Programmer26</dc:creator>
      <dc:date>2021-06-02T11:47:48Z</dc:date>
    </item>
  </channel>
</rss>

