<?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: How to stop &amp;quot;data set limit reached&amp;quot; from appearing in my process flow. in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-stop-quot-data-set-limit-reached-quot-from-appearing-in/m-p/228018#M16611</link>
    <description>&lt;P&gt;I don't think you&amp;nbsp;&lt;STRONG&gt;want&lt;/STRONG&gt; 5000 tables to be added to your SAS Enterprise Guide project. &amp;nbsp;That would make the project impossible to navigate (and very large and probably slow).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here's what I suggest. &amp;nbsp;Put all of this in your SAS program that runs the PROC ARIMA. &amp;nbsp;It's important that all of these statements reside in the same program node, so they are run in one batch.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Create a special&amp;nbsp;libname to store your PROC ARIMA output:&lt;BR /&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;libname arima_t "c:\projects\arimaout";&lt;BR /&gt;&lt;BR /&gt;&lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;Then following that, include the PROC ARIMA code (and whatever else you need for this analysis). &amp;nbsp;Send the PROC ARIMA output to this&amp;nbsp;&lt;STRONG&gt;ARIMA_T&lt;/STRONG&gt; library (using OUT= or ODS OUTPUT if that's what you're using -- just make sure this library is referenced).&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;In the same program at the end&lt;/STRONG&gt;, clear the ARIMA_T library (undefine it):&lt;BR /&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;libname arima_t CLEAR;&lt;BR /&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;This prevents EG from automatically adding data that was created using this library name.&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;Then r&lt;EM&gt;e-assign&lt;/EM&gt; a library of a different name to the same path:&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;&lt;BR /&gt;libname arima "c:\projects\arimaout";&lt;/SPAN&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;All of your output data will be present in the ARIMA library (in this example), but&amp;nbsp;&lt;STRONG&gt;won't&amp;nbsp;&lt;/STRONG&gt;be added to the project (because EG won't detect&amp;nbsp;the data sets automatically). &amp;nbsp;You can use File-&amp;gt;Open or use the Servers list to navigate the list of data sets in the new library.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Chris&lt;/P&gt;</description>
    <pubDate>Thu, 01 Oct 2015 11:57:34 GMT</pubDate>
    <dc:creator>ChrisHemedinger</dc:creator>
    <dc:date>2015-10-01T11:57:34Z</dc:date>
    <item>
      <title>How to stop "data set limit reached" from appearing in my process flow.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-stop-quot-data-set-limit-reached-quot-from-appearing-in/m-p/132555#M10741</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am creating an project using SAS EG 4.3, and i want to limit the number of&lt;BR /&gt;tables that will appears in the process flow to the ones that i select( placed&lt;BR /&gt;in the process flow), so i named all my intermediate calculation table starting&lt;BR /&gt;by _TO_, which i think make them temporary and stop them from appearing in my&lt;BR /&gt;process flow, in the same time i need to keep some tables without showing them,&lt;BR /&gt;so I set the max number of data sets to appear to 0(zero). but now am stuck&lt;BR /&gt;with a warning note" data set limit reached" that appear in my&lt;BR /&gt;process flow.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so any one could please help me to find a way to stop this warning note from&lt;BR /&gt;appearing? Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Nov 2013 16:56:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-stop-quot-data-set-limit-reached-quot-from-appearing-in/m-p/132555#M10741</guid>
      <dc:creator>karim10</dc:creator>
      <dc:date>2013-11-04T16:56:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to stop "data set limit reached" from appearing in my process flow.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-stop-quot-data-set-limit-reached-quot-from-appearing-in/m-p/132556#M10742</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try&amp;nbsp; &lt;/P&gt;&lt;P&gt;Menu tools / options&amp;nbsp; - opens a window&lt;/P&gt;&lt;P&gt;Then on the left select Results General, on the right hand side make sure "Automatically add output data to the project tree" is unticked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to keep the datasets outside of the sas session declare a library, just remember to delete them when you no longer need them &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Libname temp 'W:\SAS_Temp';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data temp.blahdata;&lt;/P&gt;&lt;P&gt;.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Nov 2013 23:37:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-stop-quot-data-set-limit-reached-quot-from-appearing-in/m-p/132556#M10742</guid>
      <dc:creator>MumSquared</dc:creator>
      <dc:date>2013-11-04T23:37:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to stop "data set limit reached" from appearing in my process flow.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-stop-quot-data-set-limit-reached-quot-from-appearing-in/m-p/132557#M10743</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Another trick is to allocate a library for your intended output data sets, and then "clear" the library before your program ends.&amp;nbsp; The data set files remain in the folder, but as the allocated library is no longer defined EG won't add them to the project.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then, in a separate step, you can reassign the library and add just the data sets you want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chris&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Nov 2013 13:38:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-stop-quot-data-set-limit-reached-quot-from-appearing-in/m-p/132557#M10743</guid>
      <dc:creator>ChrisHemedinger</dc:creator>
      <dc:date>2013-11-05T13:38:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to stop "data set limit reached" from appearing in my process flow.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-stop-quot-data-set-limit-reached-quot-from-appearing-in/m-p/132558#M10744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I unchecked the Automatically add button in my options and I still always get the Data Set Limit Reached.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using version 6.1 of Enterprise Guide.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestions on how to remove this for good?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jul 2015 15:37:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-stop-quot-data-set-limit-reached-quot-from-appearing-in/m-p/132558#M10744</guid>
      <dc:creator>Zachary</dc:creator>
      <dc:date>2015-07-14T15:37:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to stop "data set limit reached" from appearing in my process flow.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-stop-quot-data-set-limit-reached-quot-from-appearing-in/m-p/132559#M10745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try setting the option Maximum number of datasets added to project to 0. You will find this in the Options &amp;gt; Results &amp;gt; Results General.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will mean no datasets are added to your process flow but they are still available in the Server List. If you still prefer them to be added increase the default number 50 to a limit that will not be reached.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jul 2015 20:16:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-stop-quot-data-set-limit-reached-quot-from-appearing-in/m-p/132559#M10745</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2015-07-14T20:16:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to stop "data set limit reached" from appearing in my process flow.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-stop-quot-data-set-limit-reached-quot-from-appearing-in/m-p/132560#M10746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Still does not work. Below are the pictures of the checked and unchecked options, as well as the project tree.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture1.JPG" class="jive-image-thumbnail jive-image" src="https://communities.sas.com/legacyfs/online/11350_Capture1.JPG" width="450" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture2.JPG" class="jive-image-thumbnail jive-image" src="https://communities.sas.com/legacyfs/online/11351_Capture2.JPG" width="450" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jul 2015 21:27:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-stop-quot-data-set-limit-reached-quot-from-appearing-in/m-p/132560#M10746</guid>
      <dc:creator>Zachary</dc:creator>
      <dc:date>2015-07-14T21:27:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to stop "data set limit reached" from appearing in my process flow.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-stop-quot-data-set-limit-reached-quot-from-appearing-in/m-p/132561#M10747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The message will only disappear if you set the default number to a limit bigger than the number of datasets you are producing (say 100, 200 etc.). Setting it to 0 will make the message appear all the time.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jul 2015 21:55:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-stop-quot-data-set-limit-reached-quot-from-appearing-in/m-p/132561#M10747</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2015-07-14T21:55:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to stop "data set limit reached" from appearing in my process flow.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-stop-quot-data-set-limit-reached-quot-from-appearing-in/m-p/132562#M10748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This still does not work for me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to upload my images, but I cannot do it in Communities for some reason right now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any thoughts without actually seeing my images? Maybe there is a way for me to post the files of the images.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Aug 2015 20:42:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-stop-quot-data-set-limit-reached-quot-from-appearing-in/m-p/132562#M10748</guid>
      <dc:creator>Zachary</dc:creator>
      <dc:date>2015-08-07T20:42:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to stop "data set limit reached" from appearing in my process flow.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-stop-quot-data-set-limit-reached-quot-from-appearing-in/m-p/132563#M10749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So have you tried my last suggestion of setting the number of datasets much higher, like 100, 200 etc?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Aug 2015 23:13:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-stop-quot-data-set-limit-reached-quot-from-appearing-in/m-p/132563#M10749</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2015-08-07T23:13:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to stop "data set limit reached" from appearing in my process flow.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-stop-quot-data-set-limit-reached-quot-from-appearing-in/m-p/132564#M10750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, you are correct. The picture in the thread showed that (1) automatically adding the output to the tree is unchecked &amp;amp; (2) the maximum number of output files is 500.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any other ideas are welcome. Thank you very much.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Aug 2015 12:35:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-stop-quot-data-set-limit-reached-quot-from-appearing-in/m-p/132564#M10750</guid>
      <dc:creator>Zachary</dc:creator>
      <dc:date>2015-08-10T12:35:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to stop "data set limit reached" from appearing in my process flow.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-stop-quot-data-set-limit-reached-quot-from-appearing-in/m-p/132565#M10751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How many datasets is your session producing? 500 as quite high, but you could push it up to 1000 or more.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Aug 2015 19:46:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-stop-quot-data-set-limit-reached-quot-from-appearing-in/m-p/132565#M10751</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2015-08-10T19:46:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to stop "data set limit reached" from appearing in my process flow.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-stop-quot-data-set-limit-reached-quot-from-appearing-in/m-p/132566#M10752</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's not the issue. I am only producing about half a dozen datasets.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Something must be getting lost in the translation, and I am probably poorly wording my issue. The second&amp;nbsp; image posted above shows all of the datasets that are produced. It is slightly cleaner if I say to produce at most zero datasets. But then after each syntax module it has an arrow pointing to Data Set Limit Reached.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Perhaps this is just not doable as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Aug 2015 20:40:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-stop-quot-data-set-limit-reached-quot-from-appearing-in/m-p/132566#M10752</guid>
      <dc:creator>Zachary</dc:creator>
      <dc:date>2015-08-10T20:40:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to stop "data set limit reached" from appearing in my process flow.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-stop-quot-data-set-limit-reached-quot-from-appearing-in/m-p/132567#M10753</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Zach,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is the "_TO_" trick working for you? That behavior was changed in 9.3:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://blogs.sas.com/content/sasdummy/2011/03/29/undocumented-features-theres-a-reason-they-are-not-documented/" title="http://blogs.sas.com/content/sasdummy/2011/03/29/undocumented-features-theres-a-reason-they-are-not-documented/"&gt;http://blogs.sas.com/content/sasdummy/2011/03/29/undocumented-features-theres-a-reason-they-are-not-documented/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The only way that I know of to control which data sets appear in the process flow -- as output of a code node -- is to ensure:&lt;/P&gt;&lt;P&gt;- those data sets you want are created by the SAS program in the node -- or at least updated/touched by the program&lt;/P&gt;&lt;P&gt;- the data sets your &lt;STRONG&gt;don't&lt;/STRONG&gt; want are either deleted before the end of the program, &lt;STRONG&gt;or&lt;/STRONG&gt; at least reside in a library that can't be reached when EG calculates which data to add to the project.&amp;nbsp; A trick would be to funnel non-essential data sets to a library that aliases to a different folder, then CLEAR the library definition at the end of the program.&amp;nbsp; The files won't be deleted, but EG won't connect with them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chris&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Aug 2015 20:57:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-stop-quot-data-set-limit-reached-quot-from-appearing-in/m-p/132567#M10753</guid>
      <dc:creator>ChrisHemedinger</dc:creator>
      <dc:date>2015-08-10T20:57:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to stop "data set limit reached" from appearing in my process flow.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-stop-quot-data-set-limit-reached-quot-from-appearing-in/m-p/227999#M16608</link>
      <description>&lt;P&gt;Hi there,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My ods output from the proc arima should create more than 5000 tables, but the maximum I could get from EG is 500. Can anyone please help me to increase the maximum limit of output tables.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;P&gt;Mai&lt;/P&gt;</description>
      <pubDate>Thu, 01 Oct 2015 06:16:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-stop-quot-data-set-limit-reached-quot-from-appearing-in/m-p/227999#M16608</guid>
      <dc:creator>q5pham</dc:creator>
      <dc:date>2015-10-01T06:16:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to stop "data set limit reached" from appearing in my process flow.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-stop-quot-data-set-limit-reached-quot-from-appearing-in/m-p/228018#M16611</link>
      <description>&lt;P&gt;I don't think you&amp;nbsp;&lt;STRONG&gt;want&lt;/STRONG&gt; 5000 tables to be added to your SAS Enterprise Guide project. &amp;nbsp;That would make the project impossible to navigate (and very large and probably slow).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here's what I suggest. &amp;nbsp;Put all of this in your SAS program that runs the PROC ARIMA. &amp;nbsp;It's important that all of these statements reside in the same program node, so they are run in one batch.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Create a special&amp;nbsp;libname to store your PROC ARIMA output:&lt;BR /&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;libname arima_t "c:\projects\arimaout";&lt;BR /&gt;&lt;BR /&gt;&lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;Then following that, include the PROC ARIMA code (and whatever else you need for this analysis). &amp;nbsp;Send the PROC ARIMA output to this&amp;nbsp;&lt;STRONG&gt;ARIMA_T&lt;/STRONG&gt; library (using OUT= or ODS OUTPUT if that's what you're using -- just make sure this library is referenced).&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;In the same program at the end&lt;/STRONG&gt;, clear the ARIMA_T library (undefine it):&lt;BR /&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;libname arima_t CLEAR;&lt;BR /&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;This prevents EG from automatically adding data that was created using this library name.&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;Then r&lt;EM&gt;e-assign&lt;/EM&gt; a library of a different name to the same path:&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;&lt;BR /&gt;libname arima "c:\projects\arimaout";&lt;/SPAN&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;All of your output data will be present in the ARIMA library (in this example), but&amp;nbsp;&lt;STRONG&gt;won't&amp;nbsp;&lt;/STRONG&gt;be added to the project (because EG won't detect&amp;nbsp;the data sets automatically). &amp;nbsp;You can use File-&amp;gt;Open or use the Servers list to navigate the list of data sets in the new library.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Thu, 01 Oct 2015 11:57:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-stop-quot-data-set-limit-reached-quot-from-appearing-in/m-p/228018#M16611</guid>
      <dc:creator>ChrisHemedinger</dc:creator>
      <dc:date>2015-10-01T11:57:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to stop "data set limit reached" from appearing in my process flow.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-stop-quot-data-set-limit-reached-quot-from-appearing-in/m-p/228379#M16645</link>
      <description>&lt;P&gt;Hi Chris,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for your message. Is there any way that I could merge all the 5000 output tables in one along each ods output step, e.g merge table 1 and 2, then merge with table 3, etc. Even each of my single table is very small (3 rows and 6 columns), merging 5000 tables at once seems to be inefficient.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks, Mai&lt;/P&gt;</description>
      <pubDate>Mon, 05 Oct 2015 04:31:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-stop-quot-data-set-limit-reached-quot-from-appearing-in/m-p/228379#M16645</guid>
      <dc:creator>q5pham</dc:creator>
      <dc:date>2015-10-05T04:31:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to stop "data set limit reached" from appearing in my process flow.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-stop-quot-data-set-limit-reached-quot-from-appearing-in/m-p/228380#M16646</link>
      <description>&lt;P&gt;Hi Christ,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As most of my temp- datasets are in work folders, could you please show me the code that points to the Work folder instead of Arima folder as shown in your step 4:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;libname arima "c:\projects\arimaout";&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;Thanks, Mai&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Oct 2015 06:03:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-stop-quot-data-set-limit-reached-quot-from-appearing-in/m-p/228380#M16646</guid>
      <dc:creator>q5pham</dc:creator>
      <dc:date>2015-10-05T06:03:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to stop "data set limit reached" from appearing in my process flow.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-stop-quot-data-set-limit-reached-quot-from-appearing-in/m-p/228408#M16647</link>
      <description>&lt;P&gt;Yes, here is a more complete example. &amp;nbsp;This works well if your output tables can all be named with a similar prefix -- for example, "AR". &amp;nbsp;This is a complete example that you should be able to run as-is to see how it works.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/* create a temp subfolder in WORK and assign a library to it */
options dlcreatedir;
%let outdir=%sysfunc(getoption(work));
/* temp library is ARIMA */
libname arima "&amp;amp;outdir./arima";


data nile;
   input level @@;
   year = intnx( 'year', '1jan1871'd, _n_-1 );
   format year year4.;
datalines;
1120  1160  963  1210  1160  1160  813  1230   1370  1140
995   935   1110 994   1020  960   1180 799    958   1140
1100  1210  1150 1250  1260  1220  1030 1100   774   840
874   694   940  833   701   916   692  1020   1050  969
831   726   456  824   702   1120  1100 832    764   821
768   845   864  862   698   845   744  796    1040  759
781   865   845  944   984   897   822  1010   771   676
649   846   812  742   801   1040  860  874    848   890
744   749   838  1050  918   986   797  923    975   815
1020  906   901  1170  912   746   919  718    714   740
;

data nile;
   set nile;
   AO1877 = ( year = '1jan1877'd );
   AO1913 = ( year = '1jan1913'd );
   LS1899 = ( year &amp;gt;= '1jan1899'd );
run;


/*-- ARIMA(0, 1, 1) Model --*/
proc arima data=nile ;
   identify var=level(1);
   estimate q=1 noint method=ml outmodel=arima.ar1;
   outlier maxnum= 5 id=year;
   
run;

/*-- MA1 Model with Outliers --*/
proc arima data=nile;
   identify var=level
            crosscorr=( AO1877 AO1913 LS1899 );
   estimate q=1
            input=( AO1877 AO1913 LS1899 )
            method=ml outmodel=arima.ar2;
   outlier maxnum=5 alpha=0.01 id=year;
run;

/* merge all similarly named output */
/* "ar:" means that all ARIMA.AR* data will be merged */
data WORK.arout;
  length ds $ 41 dsname $ 41;
  set arima.ar: indsname=ds;
  dsname=ds;
run;

/* Clear ARIMA lib so that EG doesn't detect it */
libname arima CLEAR;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 05 Oct 2015 12:52:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-stop-quot-data-set-limit-reached-quot-from-appearing-in/m-p/228408#M16647</guid>
      <dc:creator>ChrisHemedinger</dc:creator>
      <dc:date>2015-10-05T12:52:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to stop "data set limit reached" from appearing in my process flow.</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-stop-quot-data-set-limit-reached-quot-from-appearing-in/m-p/228544#M16651</link>
      <description>&lt;P&gt;Wonderful! You really save me. Thank you so much Chris.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Oct 2015 23:51:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-stop-quot-data-set-limit-reached-quot-from-appearing-in/m-p/228544#M16651</guid>
      <dc:creator>q5pham</dc:creator>
      <dc:date>2015-10-05T23:51:42Z</dc:date>
    </item>
  </channel>
</rss>

