<?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: ERROR: The SAS System stopped processing this step because of insufficient memory. in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/ERROR-The-SAS-System-stopped-processing-this-step-because-of/m-p/502193#M627</link>
    <description>&lt;P&gt;I&amp;nbsp;spent considerable time just to buy a license for SAS. I just can't find any!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;BTW, can one use HPMIXED or HPGLIMMIX in SAS UE to deal with large data?&lt;/P&gt;</description>
    <pubDate>Sat, 06 Oct 2018 22:13:52 GMT</pubDate>
    <dc:creator>SBS</dc:creator>
    <dc:date>2018-10-06T22:13:52Z</dc:date>
    <item>
      <title>ERROR: The SAS System stopped processing this step because of insufficient memory.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/ERROR-The-SAS-System-stopped-processing-this-step-because-of/m-p/502134#M616</link>
      <description>&lt;P&gt;I am using SAS University Edition on Linux with Oracle VirtualBox. The base memory I have allocated is 24GB. Yet when I run the following code I get "ERROR: The SAS System stopped processing this step because of insufficient memory.":&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc glimmix data=MY.Data1 method=quad;
class person_gender person_id;
model&amp;nbsp;NumberOfPronounsUsed&amp;nbsp;=&amp;nbsp;person_gender / link=log s dist=negbinomial offset=log_TotalWordsInSentence;
random int / subject=person_id;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Please note that number of observations in MY.Data1 is&amp;nbsp;3820025 (i.e., 3.8 million). Is there no way that SAS University Edition can handle this? Please help!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 06 Oct 2018 15:29:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/ERROR-The-SAS-System-stopped-processing-this-step-because-of/m-p/502134#M616</guid>
      <dc:creator>SBS</dc:creator>
      <dc:date>2018-10-06T15:29:22Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: The SAS System stopped processing this step because of insufficient memory.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/ERROR-The-SAS-System-stopped-processing-this-step-because-of/m-p/502140#M617</link>
      <description>&lt;P&gt;SAS UE is a&amp;nbsp;&lt;EM&gt;learning&lt;/EM&gt;&amp;nbsp;tool with limited capacity, in terms of internal storage and memory. Reduce your data.&lt;/P&gt;</description>
      <pubDate>Sat, 06 Oct 2018 17:01:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/ERROR-The-SAS-System-stopped-processing-this-step-because-of/m-p/502140#M617</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-10-06T17:01:07Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: The SAS System stopped processing this step because of insufficient memory.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/ERROR-The-SAS-System-stopped-processing-this-step-because-of/m-p/502141#M618</link>
      <description>&lt;P&gt;Thank you for quick response. Is there any free/paid version on Linux that can handle this data size?&lt;/P&gt;</description>
      <pubDate>Sat, 06 Oct 2018 15:48:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/ERROR-The-SAS-System-stopped-processing-this-step-because-of/m-p/502141#M618</guid>
      <dc:creator>SBS</dc:creator>
      <dc:date>2018-10-06T15:48:40Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: The SAS System stopped processing this step because of insufficient memory.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/ERROR-The-SAS-System-stopped-processing-this-step-because-of/m-p/502144#M619</link>
      <description>&lt;P&gt;Also why is that SAS UE can process the following mixed model in just a minute, but not the negative binomial (described earlier) for same size of data (3.8 million)?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc mixed data=MY.Data1 method=reml covtest;
class person_gender person_id;
model PercetageOfPronoungs=person_gender /solution;
random intercept / subject=person_id; 
run; &lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 06 Oct 2018 16:06:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/ERROR-The-SAS-System-stopped-processing-this-step-because-of/m-p/502144#M619</guid>
      <dc:creator>SBS</dc:creator>
      <dc:date>2018-10-06T16:06:01Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: The SAS System stopped processing this step because of insufficient memory.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/ERROR-The-SAS-System-stopped-processing-this-step-because-of/m-p/502159#M621</link>
      <description>&lt;P&gt;The amount of memory needed to process a model is not really related to the size of the data. It is related to the size of the working memory that SAS needs to process the model.&amp;nbsp; The negative binomial must use more memory to process the model.&lt;/P&gt;</description>
      <pubDate>Sat, 06 Oct 2018 18:22:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/ERROR-The-SAS-System-stopped-processing-this-step-because-of/m-p/502159#M621</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2018-10-06T18:22:26Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: The SAS System stopped processing this step because of insufficient memory.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/ERROR-The-SAS-System-stopped-processing-this-step-because-of/m-p/502160#M622</link>
      <description>&lt;P&gt;Thanks Tom. Is this a limitation of SAS implementation in the UE edition alone?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 06 Oct 2018 18:24:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/ERROR-The-SAS-System-stopped-processing-this-step-because-of/m-p/502160#M622</guid>
      <dc:creator>SBS</dc:creator>
      <dc:date>2018-10-06T18:24:53Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: The SAS System stopped processing this step because of insufficient memory.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/ERROR-The-SAS-System-stopped-processing-this-step-because-of/m-p/502161#M623</link>
      <description>&lt;P&gt;The UE version is purposely limited in the amount of memory it can use.&amp;nbsp; If you want to use SAS for real then buy a copy.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But note that any version of SAS (or any other analytic software) will have limits on the size of problems it can solve. Computers are finite machines.&lt;/P&gt;</description>
      <pubDate>Sat, 06 Oct 2018 18:28:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/ERROR-The-SAS-System-stopped-processing-this-step-because-of/m-p/502161#M623</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2018-10-06T18:28:07Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: The SAS System stopped processing this step because of insufficient memory.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/ERROR-The-SAS-System-stopped-processing-this-step-because-of/m-p/502162#M624</link>
      <description>&lt;P&gt;Thanks Tom. I guess I will have to try with buying a copy.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 06 Oct 2018 18:29:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/ERROR-The-SAS-System-stopped-processing-this-step-because-of/m-p/502162#M624</guid>
      <dc:creator>SBS</dc:creator>
      <dc:date>2018-10-06T18:29:21Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: The SAS System stopped processing this step because of insufficient memory.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/ERROR-The-SAS-System-stopped-processing-this-step-because-of/m-p/502193#M627</link>
      <description>&lt;P&gt;I&amp;nbsp;spent considerable time just to buy a license for SAS. I just can't find any!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;BTW, can one use HPMIXED or HPGLIMMIX in SAS UE to deal with large data?&lt;/P&gt;</description>
      <pubDate>Sat, 06 Oct 2018 22:13:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/ERROR-The-SAS-System-stopped-processing-this-step-because-of/m-p/502193#M627</guid>
      <dc:creator>SBS</dc:creator>
      <dc:date>2018-10-06T22:13:52Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: The SAS System stopped processing this step because of insufficient memory.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/ERROR-The-SAS-System-stopped-processing-this-step-because-of/m-p/502238#M630</link>
      <description>&lt;P&gt;Your data is too large for&amp;nbsp;&lt;SPAN&gt;HPMIXED or HPGLIMMIX .&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Try PROC GEE or PROC GENMOD for GEE model .&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 07 Oct 2018 10:44:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/ERROR-The-SAS-System-stopped-processing-this-step-because-of/m-p/502238#M630</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2018-10-07T10:44:35Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: The SAS System stopped processing this step because of insufficient memory.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/ERROR-The-SAS-System-stopped-processing-this-step-because-of/m-p/502255#M632</link>
      <description>&lt;P&gt;Thanks Ksharp. Does either of these PROCs support negative binomial with mixed effects?&lt;/P&gt;</description>
      <pubDate>Sun, 07 Oct 2018 13:55:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/ERROR-The-SAS-System-stopped-processing-this-step-because-of/m-p/502255#M632</guid>
      <dc:creator>SBS</dc:creator>
      <dc:date>2018-10-07T13:55:56Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: The SAS System stopped processing this step because of insufficient memory.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/ERROR-The-SAS-System-stopped-processing-this-step-because-of/m-p/502282#M636</link>
      <description>&lt;P&gt;Would this be correct syntax?&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc genmod data=MY.Data1;
    class person_ender person_id;
    model NumberOfPronounsUsed = person_gender  / type3 dist=negbin offset=log_TotalWordsInSentence;
    Repeated subject=person_id/sorted type=exch;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Please advise!&lt;/P&gt;</description>
      <pubDate>Sun, 07 Oct 2018 22:06:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/ERROR-The-SAS-System-stopped-processing-this-step-because-of/m-p/502282#M636</guid>
      <dc:creator>SBS</dc:creator>
      <dc:date>2018-10-07T22:06:26Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: The SAS System stopped processing this step because of insufficient memory.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/ERROR-The-SAS-System-stopped-processing-this-step-because-of/m-p/502367#M655</link>
      <description>&lt;P&gt;Yes. But&amp;nbsp;&lt;SPAN&gt;these PROCs support negative binomial for GEE model(very like mixed model) ,not for&amp;nbsp; mixed effects.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Oct 2018 12:19:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/ERROR-The-SAS-System-stopped-processing-this-step-because-of/m-p/502367#M655</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2018-10-08T12:19:43Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: The SAS System stopped processing this step because of insufficient memory.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/ERROR-The-SAS-System-stopped-processing-this-step-because-of/m-p/502377#M656</link>
      <description>&lt;P&gt;Sorry, I am not aware of conceptual difference. For the particular problem that I am looking at here, is the genmod incorrect? Please help!&lt;/P&gt;</description>
      <pubDate>Mon, 08 Oct 2018 12:45:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/ERROR-The-SAS-System-stopped-processing-this-step-because-of/m-p/502377#M656</guid>
      <dc:creator>SBS</dc:creator>
      <dc:date>2018-10-08T12:45:32Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: The SAS System stopped processing this step because of insufficient memory.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/ERROR-The-SAS-System-stopped-processing-this-step-because-of/m-p/502385#M658</link>
      <description>&lt;P&gt;&lt;SPAN&gt;genmod&amp;nbsp; is correct .&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;But you gotta know proc genmod (total population effect)&amp;nbsp; is different from proc mixed (margin effect)&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Oct 2018 13:05:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/ERROR-The-SAS-System-stopped-processing-this-step-because-of/m-p/502385#M658</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2018-10-08T13:05:33Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: The SAS System stopped processing this step because of insufficient memory.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/ERROR-The-SAS-System-stopped-processing-this-step-because-of/m-p/502386#M659</link>
      <description>&lt;P&gt;&lt;SPAN&gt;genmod&amp;nbsp; is correct .&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;But you gotta know proc genmod (total population effect)&amp;nbsp; is different from proc mixed (margin effect)&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Oct 2018 13:07:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/ERROR-The-SAS-System-stopped-processing-this-step-because-of/m-p/502386#M659</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2018-10-08T13:07:26Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: The SAS System stopped processing this step because of insufficient memory.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/ERROR-The-SAS-System-stopped-processing-this-step-because-of/m-p/502390#M661</link>
      <description>&lt;P&gt;Thank you so much Ksharp.&lt;/P&gt;</description>
      <pubDate>Mon, 08 Oct 2018 13:14:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/ERROR-The-SAS-System-stopped-processing-this-step-because-of/m-p/502390#M661</guid>
      <dc:creator>SBS</dc:creator>
      <dc:date>2018-10-08T13:14:32Z</dc:date>
    </item>
  </channel>
</rss>

