<?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 How do I fix &amp;quot;ERROR: Java virtual machine exception. java.lang.OutOfMemoryError&amp;quot;? in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-do-I-fix-quot-ERROR-Java-virtual-machine-exception-java-lang/m-p/385429#M24838</link>
    <description>&lt;P&gt;I'm using SAS Enterprise Guide 7.11 64-bit&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to run a linear regression with a data set that includes&amp;nbsp;over 300,000 observations. Every time I go to run the calculation, the following error appears:&lt;/P&gt;&lt;P&gt;ERROR: Java virtual machine exception. java.lang.OutOfMemoryError: GC overhead limit exceeded.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So far, I've tried to follow the steps listed in a related post on the SAS website, but with no luck. please help!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The log for this operation is below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;;*';*";*/;quit;run;&lt;BR /&gt;2 OPTIONS PAGENO=MIN;&lt;BR /&gt;3 %LET _CLIENTTASKLABEL='Linear Regression';&lt;BR /&gt;4 %LET _CLIENTPROJECTPATH='K:\Admin Div Research\DISPARITIES\Research Section projects\Regression Analysis\Regression&lt;BR /&gt;4 ! Analysis_Kang and Harrington.egp';&lt;BR /&gt;5 %LET _CLIENTPROJECTNAME='Regression Analysis_Kang and Harrington.egp';&lt;BR /&gt;6&lt;BR /&gt;7 ODS _ALL_ CLOSE;&lt;BR /&gt;8 ODS PROCTITLE;&lt;BR /&gt;9 OPTIONS DEV=ACTIVEX;&lt;BR /&gt;10 GOPTIONS XPIXELS=0 YPIXELS=0;&lt;BR /&gt;11 FILENAME EGSR TEMP;&lt;BR /&gt;12 ODS tagsets.sasreport13(ID=EGSR) FILE=EGSR&lt;BR /&gt;13 STYLE=HtmlBlue&lt;BR /&gt;14 STYLESHEET=(URL="file:///C:/Program%20Files/SASHome/SASEnterpriseGuide/7.1/Styles/HtmlBlue.css")&lt;BR /&gt;15 NOGTITLE&lt;BR /&gt;16 NOGFOOTNOTE&lt;BR /&gt;17 GPATH=&amp;amp;sasworklocation&lt;BR /&gt;18 ENCODING=UTF8&lt;BR /&gt;19 options(rolap="on")&lt;BR /&gt;20 ;&lt;BR /&gt;NOTE: Writing TAGSETS.SASREPORT13(EGSR) Body file: EGSR&lt;BR /&gt;21&lt;BR /&gt;22 GOPTIONS ACCESSIBLE;&lt;BR /&gt;23 /* -------------------------------------------------------------------&lt;BR /&gt;24 Code generated by SAS Task&lt;BR /&gt;25&lt;BR /&gt;26 Generated on: Monday, July 31, 2017 at 3:59:51 PM&lt;BR /&gt;27 By task: Linear Regression&lt;BR /&gt;28&lt;BR /&gt;29 Input Data: Local:SASUSER.FY15_16_CDER,MEDICAL,POS COMBINE&lt;BR /&gt;30 Server: Local&lt;BR /&gt;31 ------------------------------------------------------------------- */&lt;BR /&gt;32 ODS GRAPHICS ON;&lt;BR /&gt;33&lt;BR /&gt;34 %_eg_conditional_dropds(WORK.SORTTEMPTABLESORTED_0000,&lt;BR /&gt;35 WORK.TMP1TempTableForPlots);&lt;BR /&gt;36 /* -------------------------------------------------------------------&lt;BR /&gt;37 Determine the data set's type attribute (if one is defined)&lt;BR /&gt;38 and prepare it for addition to the data set/view which is&lt;BR /&gt;39 generated in the following step.&lt;BR /&gt;40 ------------------------------------------------------------------- */&lt;BR /&gt;41 DATA _NULL_;&lt;BR /&gt;42 dsid = OPEN("SASUSER.'FY15_16_CDER,MEDICAL,POS COMBINE'n(FIRSTOBS=1 )", "I");&lt;BR /&gt;43 dstype = ATTRC(DSID, "TYPE");&lt;BR /&gt;44 IF TRIM(dstype) = " " THEN&lt;BR /&gt;45 DO;&lt;BR /&gt;46 CALL SYMPUT("_EG_DSTYPE_", "");&lt;BR /&gt;47 CALL SYMPUT("_DSTYPE_VARS_", "");&lt;BR /&gt;48 END;&lt;BR /&gt;49 ELSE&lt;BR /&gt;50 DO;&lt;BR /&gt;51 CALL SYMPUT("_EG_DSTYPE_", "(TYPE=""" || TRIM(dstype) || """)");&lt;BR /&gt;52 IF VARNUM(dsid, "_NAME_") NE 0 AND VARNUM(dsid, "_TYPE_") NE 0 THEN&lt;BR /&gt;53 CALL SYMPUT("_DSTYPE_VARS_", "_TYPE_ _NAME_");&lt;BR /&gt;54 ELSE IF VARNUM(dsid, "_TYPE_") NE 0 THEN&lt;BR /&gt;55 CALL SYMPUT("_DSTYPE_VARS_", "_TYPE_");&lt;BR /&gt;56 ELSE IF VARNUM(dsid, "_NAME_") NE 0 THEN&lt;BR /&gt;2 The SAS System 11:44 Monday, July 31, 2017&lt;/P&gt;&lt;P&gt;57 CALL SYMPUT("_DSTYPE_VARS_", "_NAME_");&lt;BR /&gt;58 ELSE&lt;BR /&gt;59 CALL SYMPUT("_DSTYPE_VARS_", "");&lt;BR /&gt;60 END;&lt;BR /&gt;61 rc = CLOSE(dsid);&lt;BR /&gt;62 STOP;&lt;BR /&gt;63 RUN;&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;real time 0.00 seconds&lt;BR /&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;64&lt;BR /&gt;65 /* -------------------------------------------------------------------&lt;BR /&gt;66 Data set SASUSER.'FY15_16_CDER,MEDICAL,POS COMBINE'n does not need to be sorted.&lt;BR /&gt;67 ------------------------------------------------------------------- */&lt;BR /&gt;68 DATA WORK.SORTTEMPTABLESORTED_0000 &amp;amp;_EG_DSTYPE_ / VIEW=WORK.SORTTEMPTABLESORTED_0000;&lt;BR /&gt;69 SET SASUSER.'FY15_16_CDER,MEDICAL,POS COMBINE'n(FIRSTOBS=1 KEEP=AMT White &amp;amp;_DSTYPE_VARS_);&lt;BR /&gt;70 RUN;&lt;/P&gt;&lt;P&gt;NOTE: DATA STEP view saved on file WORK.SORTTEMPTABLESORTED_0000.&lt;BR /&gt;NOTE: A stored DATA STEP view cannot run under a different operating system.&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;real time 0.01 seconds&lt;BR /&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;71 TITLE;&lt;BR /&gt;72 TITLE1 "Linear Regression Results (White)";&lt;BR /&gt;73 FOOTNOTE;&lt;BR /&gt;74 PROC REG DATA=WORK.SORTTEMPTABLESORTED_0000&lt;BR /&gt;75 PLOTS(ONLY)=ALL&lt;BR /&gt;76&lt;BR /&gt;77 /* Start of custom user code */&lt;BR /&gt;78 PLOTS(MAXPOINTS=NONE)&lt;BR /&gt;79 /* End of custom user code */&lt;BR /&gt;80 ;&lt;BR /&gt;81 Linear_Regression_Model: MODEL AMT = White&lt;BR /&gt;82 / SELECTION=NONE&lt;BR /&gt;83 CLB&lt;BR /&gt;84 ALPHA=0.05&lt;BR /&gt;85 ;&lt;BR /&gt;86 RUN;&lt;/P&gt;&lt;P&gt;ERROR: Java virtual machine exception. java.lang.OutOfMemoryError: GC overhead limit exceeded.&lt;BR /&gt;ERROR: Java virtual machine exception. java.lang.OutOfMemoryError: GC overhead limit exceeded.&lt;BR /&gt;NOTE: View WORK.SORTTEMPTABLESORTED_0000.VIEW used (Total process time):&lt;BR /&gt;real time 2:27.47&lt;BR /&gt;cpu time 22.32 seconds&lt;BR /&gt;&lt;BR /&gt;NOTE: There were 341398 observations read from the data set SASUSER.'FY15_16_CDER,MEDICAL,POS COMBINE'n.&lt;BR /&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt;NOTE: PROCEDURE REG used (Total process time):&lt;BR /&gt;real time 2:27.92&lt;BR /&gt;cpu time 22.45 seconds&lt;BR /&gt;&lt;BR /&gt;87 QUIT;&lt;BR /&gt;3 The SAS System 11:44 Monday, July 31, 2017&lt;/P&gt;&lt;P&gt;88&lt;BR /&gt;89 /* -------------------------------------------------------------------&lt;BR /&gt;90 End of task code&lt;BR /&gt;91 ------------------------------------------------------------------- */&lt;BR /&gt;92 RUN; QUIT;&lt;BR /&gt;93 %_eg_conditional_dropds(WORK.SORTTEMPTABLESORTED_0000,&lt;BR /&gt;94 WORK.TMP1TempTableForPlots);&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;NOTE: View WORK.SORTTEMPTABLESORTED_0000 has been dropped.&lt;BR /&gt;NOTE: PROCEDURE SQL used (Total process time):&lt;BR /&gt;real time 0.00 seconds&lt;BR /&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;95 TITLE; FOOTNOTE;&lt;BR /&gt;96 ODS GRAPHICS OFF;&lt;BR /&gt;97&lt;BR /&gt;98&lt;BR /&gt;99 GOPTIONS NOACCESSIBLE;&lt;BR /&gt;100 %LET _CLIENTTASKLABEL=;&lt;BR /&gt;101 %LET _CLIENTPROJECTPATH=;&lt;BR /&gt;102 %LET _CLIENTPROJECTNAME=;&lt;BR /&gt;103&lt;BR /&gt;104 ;*';*";*/;quit;run;&lt;BR /&gt;105 ODS _ALL_ CLOSE;&lt;BR /&gt;106&lt;BR /&gt;107&lt;BR /&gt;108 QUIT; RUN;&lt;BR /&gt;109&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 03 Aug 2017 18:31:58 GMT</pubDate>
    <dc:creator>KTully</dc:creator>
    <dc:date>2017-08-03T18:31:58Z</dc:date>
    <item>
      <title>How do I fix "ERROR: Java virtual machine exception. java.lang.OutOfMemoryError"?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-do-I-fix-quot-ERROR-Java-virtual-machine-exception-java-lang/m-p/385429#M24838</link>
      <description>&lt;P&gt;I'm using SAS Enterprise Guide 7.11 64-bit&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to run a linear regression with a data set that includes&amp;nbsp;over 300,000 observations. Every time I go to run the calculation, the following error appears:&lt;/P&gt;&lt;P&gt;ERROR: Java virtual machine exception. java.lang.OutOfMemoryError: GC overhead limit exceeded.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So far, I've tried to follow the steps listed in a related post on the SAS website, but with no luck. please help!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The log for this operation is below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;;*';*";*/;quit;run;&lt;BR /&gt;2 OPTIONS PAGENO=MIN;&lt;BR /&gt;3 %LET _CLIENTTASKLABEL='Linear Regression';&lt;BR /&gt;4 %LET _CLIENTPROJECTPATH='K:\Admin Div Research\DISPARITIES\Research Section projects\Regression Analysis\Regression&lt;BR /&gt;4 ! Analysis_Kang and Harrington.egp';&lt;BR /&gt;5 %LET _CLIENTPROJECTNAME='Regression Analysis_Kang and Harrington.egp';&lt;BR /&gt;6&lt;BR /&gt;7 ODS _ALL_ CLOSE;&lt;BR /&gt;8 ODS PROCTITLE;&lt;BR /&gt;9 OPTIONS DEV=ACTIVEX;&lt;BR /&gt;10 GOPTIONS XPIXELS=0 YPIXELS=0;&lt;BR /&gt;11 FILENAME EGSR TEMP;&lt;BR /&gt;12 ODS tagsets.sasreport13(ID=EGSR) FILE=EGSR&lt;BR /&gt;13 STYLE=HtmlBlue&lt;BR /&gt;14 STYLESHEET=(URL="file:///C:/Program%20Files/SASHome/SASEnterpriseGuide/7.1/Styles/HtmlBlue.css")&lt;BR /&gt;15 NOGTITLE&lt;BR /&gt;16 NOGFOOTNOTE&lt;BR /&gt;17 GPATH=&amp;amp;sasworklocation&lt;BR /&gt;18 ENCODING=UTF8&lt;BR /&gt;19 options(rolap="on")&lt;BR /&gt;20 ;&lt;BR /&gt;NOTE: Writing TAGSETS.SASREPORT13(EGSR) Body file: EGSR&lt;BR /&gt;21&lt;BR /&gt;22 GOPTIONS ACCESSIBLE;&lt;BR /&gt;23 /* -------------------------------------------------------------------&lt;BR /&gt;24 Code generated by SAS Task&lt;BR /&gt;25&lt;BR /&gt;26 Generated on: Monday, July 31, 2017 at 3:59:51 PM&lt;BR /&gt;27 By task: Linear Regression&lt;BR /&gt;28&lt;BR /&gt;29 Input Data: Local:SASUSER.FY15_16_CDER,MEDICAL,POS COMBINE&lt;BR /&gt;30 Server: Local&lt;BR /&gt;31 ------------------------------------------------------------------- */&lt;BR /&gt;32 ODS GRAPHICS ON;&lt;BR /&gt;33&lt;BR /&gt;34 %_eg_conditional_dropds(WORK.SORTTEMPTABLESORTED_0000,&lt;BR /&gt;35 WORK.TMP1TempTableForPlots);&lt;BR /&gt;36 /* -------------------------------------------------------------------&lt;BR /&gt;37 Determine the data set's type attribute (if one is defined)&lt;BR /&gt;38 and prepare it for addition to the data set/view which is&lt;BR /&gt;39 generated in the following step.&lt;BR /&gt;40 ------------------------------------------------------------------- */&lt;BR /&gt;41 DATA _NULL_;&lt;BR /&gt;42 dsid = OPEN("SASUSER.'FY15_16_CDER,MEDICAL,POS COMBINE'n(FIRSTOBS=1 )", "I");&lt;BR /&gt;43 dstype = ATTRC(DSID, "TYPE");&lt;BR /&gt;44 IF TRIM(dstype) = " " THEN&lt;BR /&gt;45 DO;&lt;BR /&gt;46 CALL SYMPUT("_EG_DSTYPE_", "");&lt;BR /&gt;47 CALL SYMPUT("_DSTYPE_VARS_", "");&lt;BR /&gt;48 END;&lt;BR /&gt;49 ELSE&lt;BR /&gt;50 DO;&lt;BR /&gt;51 CALL SYMPUT("_EG_DSTYPE_", "(TYPE=""" || TRIM(dstype) || """)");&lt;BR /&gt;52 IF VARNUM(dsid, "_NAME_") NE 0 AND VARNUM(dsid, "_TYPE_") NE 0 THEN&lt;BR /&gt;53 CALL SYMPUT("_DSTYPE_VARS_", "_TYPE_ _NAME_");&lt;BR /&gt;54 ELSE IF VARNUM(dsid, "_TYPE_") NE 0 THEN&lt;BR /&gt;55 CALL SYMPUT("_DSTYPE_VARS_", "_TYPE_");&lt;BR /&gt;56 ELSE IF VARNUM(dsid, "_NAME_") NE 0 THEN&lt;BR /&gt;2 The SAS System 11:44 Monday, July 31, 2017&lt;/P&gt;&lt;P&gt;57 CALL SYMPUT("_DSTYPE_VARS_", "_NAME_");&lt;BR /&gt;58 ELSE&lt;BR /&gt;59 CALL SYMPUT("_DSTYPE_VARS_", "");&lt;BR /&gt;60 END;&lt;BR /&gt;61 rc = CLOSE(dsid);&lt;BR /&gt;62 STOP;&lt;BR /&gt;63 RUN;&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;real time 0.00 seconds&lt;BR /&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;64&lt;BR /&gt;65 /* -------------------------------------------------------------------&lt;BR /&gt;66 Data set SASUSER.'FY15_16_CDER,MEDICAL,POS COMBINE'n does not need to be sorted.&lt;BR /&gt;67 ------------------------------------------------------------------- */&lt;BR /&gt;68 DATA WORK.SORTTEMPTABLESORTED_0000 &amp;amp;_EG_DSTYPE_ / VIEW=WORK.SORTTEMPTABLESORTED_0000;&lt;BR /&gt;69 SET SASUSER.'FY15_16_CDER,MEDICAL,POS COMBINE'n(FIRSTOBS=1 KEEP=AMT White &amp;amp;_DSTYPE_VARS_);&lt;BR /&gt;70 RUN;&lt;/P&gt;&lt;P&gt;NOTE: DATA STEP view saved on file WORK.SORTTEMPTABLESORTED_0000.&lt;BR /&gt;NOTE: A stored DATA STEP view cannot run under a different operating system.&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;real time 0.01 seconds&lt;BR /&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;71 TITLE;&lt;BR /&gt;72 TITLE1 "Linear Regression Results (White)";&lt;BR /&gt;73 FOOTNOTE;&lt;BR /&gt;74 PROC REG DATA=WORK.SORTTEMPTABLESORTED_0000&lt;BR /&gt;75 PLOTS(ONLY)=ALL&lt;BR /&gt;76&lt;BR /&gt;77 /* Start of custom user code */&lt;BR /&gt;78 PLOTS(MAXPOINTS=NONE)&lt;BR /&gt;79 /* End of custom user code */&lt;BR /&gt;80 ;&lt;BR /&gt;81 Linear_Regression_Model: MODEL AMT = White&lt;BR /&gt;82 / SELECTION=NONE&lt;BR /&gt;83 CLB&lt;BR /&gt;84 ALPHA=0.05&lt;BR /&gt;85 ;&lt;BR /&gt;86 RUN;&lt;/P&gt;&lt;P&gt;ERROR: Java virtual machine exception. java.lang.OutOfMemoryError: GC overhead limit exceeded.&lt;BR /&gt;ERROR: Java virtual machine exception. java.lang.OutOfMemoryError: GC overhead limit exceeded.&lt;BR /&gt;NOTE: View WORK.SORTTEMPTABLESORTED_0000.VIEW used (Total process time):&lt;BR /&gt;real time 2:27.47&lt;BR /&gt;cpu time 22.32 seconds&lt;BR /&gt;&lt;BR /&gt;NOTE: There were 341398 observations read from the data set SASUSER.'FY15_16_CDER,MEDICAL,POS COMBINE'n.&lt;BR /&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt;NOTE: PROCEDURE REG used (Total process time):&lt;BR /&gt;real time 2:27.92&lt;BR /&gt;cpu time 22.45 seconds&lt;BR /&gt;&lt;BR /&gt;87 QUIT;&lt;BR /&gt;3 The SAS System 11:44 Monday, July 31, 2017&lt;/P&gt;&lt;P&gt;88&lt;BR /&gt;89 /* -------------------------------------------------------------------&lt;BR /&gt;90 End of task code&lt;BR /&gt;91 ------------------------------------------------------------------- */&lt;BR /&gt;92 RUN; QUIT;&lt;BR /&gt;93 %_eg_conditional_dropds(WORK.SORTTEMPTABLESORTED_0000,&lt;BR /&gt;94 WORK.TMP1TempTableForPlots);&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;NOTE: View WORK.SORTTEMPTABLESORTED_0000 has been dropped.&lt;BR /&gt;NOTE: PROCEDURE SQL used (Total process time):&lt;BR /&gt;real time 0.00 seconds&lt;BR /&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;95 TITLE; FOOTNOTE;&lt;BR /&gt;96 ODS GRAPHICS OFF;&lt;BR /&gt;97&lt;BR /&gt;98&lt;BR /&gt;99 GOPTIONS NOACCESSIBLE;&lt;BR /&gt;100 %LET _CLIENTTASKLABEL=;&lt;BR /&gt;101 %LET _CLIENTPROJECTPATH=;&lt;BR /&gt;102 %LET _CLIENTPROJECTNAME=;&lt;BR /&gt;103&lt;BR /&gt;104 ;*';*";*/;quit;run;&lt;BR /&gt;105 ODS _ALL_ CLOSE;&lt;BR /&gt;106&lt;BR /&gt;107&lt;BR /&gt;108 QUIT; RUN;&lt;BR /&gt;109&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Aug 2017 18:31:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-do-I-fix-quot-ERROR-Java-virtual-machine-exception-java-lang/m-p/385429#M24838</guid>
      <dc:creator>KTully</dc:creator>
      <dc:date>2017-08-03T18:31:58Z</dc:date>
    </item>
    <item>
      <title>Re: How do I fix "ERROR: Java virtual machine exception. java.lang.OutOfMemoryError"?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-do-I-fix-quot-ERROR-Java-virtual-machine-exception-java-lang/m-p/385470#M24841</link>
      <description>&lt;P&gt;300,000 points for a number of plots takes up memory to hold the graphics as built. Then the regression on top. I would suggest running the regression without the plots. If that works, add in plots that you actually want one at a time.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or find a way to have more memory available to Java and/or SAS.&lt;/P&gt;</description>
      <pubDate>Thu, 03 Aug 2017 19:42:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-do-I-fix-quot-ERROR-Java-virtual-machine-exception-java-lang/m-p/385470#M24841</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2017-08-03T19:42:16Z</dc:date>
    </item>
    <item>
      <title>Re: How do I fix "ERROR: Java virtual machine exception. java.lang.OutOfMemoryError"?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-do-I-fix-quot-ERROR-Java-virtual-machine-exception-java-lang/m-p/387104#M24963</link>
      <description>&lt;P&gt;Thank you for the helpful tip!&lt;/P&gt;</description>
      <pubDate>Thu, 10 Aug 2017 17:35:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-do-I-fix-quot-ERROR-Java-virtual-machine-exception-java-lang/m-p/387104#M24963</guid>
      <dc:creator>KTully</dc:creator>
      <dc:date>2017-08-10T17:35:46Z</dc:date>
    </item>
  </channel>
</rss>

