How to suppress the display of output dataset nodes in EG? - RunSubmit.com most recent 30 from http://www.runsubmit.com2010-07-29T19:52:46Zhttp://www.runsubmit.com/feeds/question/189http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://www.runsubmit.com/questions/189/how-to-suppress-the-display-of-output-dataset-nodes-in-egHow to suppress the display of output dataset nodes in EG?jay.l.stevens2010-01-07T02:43:23Z2010-01-07T12:47:33Z
<p>In Enterprise Guide, any output datasets (created in <code>WORK</code> or other <code>LIBNAME</code>) are, by default, displayed as output nodes emitting from the program or code node that generates them. </p>
<p>I have a relatively complex process that generates (by necessity) a TON of intermediate work datasets. I'd rather not kill them all as a part of the process ( I guess that's one solution).</p>
<p>Is there a way (through options or registry keys or devil magic) to suppress the display of these gajillion output datasets?</p>
http://www.runsubmit.com/questions/189/how-to-suppress-the-display-of-output-dataset-nodes-in-eg/190#190Answer by Lorbat for How to suppress the display of output dataset nodes in EG?Lorbat2010-01-07T11:42:28Z2010-01-07T11:42:28Z<p>Im not sure you can supress the output of nodes unless you write some code to do that.</p>
<p>But to supress automatic showing of results it is:</p>
<ol>
<li>Tools-Options</li>
<li>Project Views</li>
<li>Unclick "Show generated Results"</li>
<li>Ok</li>
</ol>
<p>If you want to suppress the ODS statements for the SAS Workspace Server:</p>
<p>Add this line to the SAS\Enterprise Guide 4\SEGuide.exe.config file:
</p>
<p>I got that from <a href="http://support.sas.com/documentation/cdl/en/gridref/62853/HTML/default/n17u3mlvl5nrr2n105ipo4vid1ma.htm" rel="nofollow">http://support.sas.com/documentation/cdl/en/gridref/62853/HTML/default/n17u3mlvl5nrr2n105ipo4vid1ma.htm</a></p>
<p>Sorry if I couldn't be of further help.</p>
http://www.runsubmit.com/questions/189/how-to-suppress-the-display-of-output-dataset-nodes-in-eg/191#191Answer by MD4 for How to suppress the display of output dataset nodes in EG?MD42010-01-07T12:47:33Z2010-01-07T12:47:33Z<p>If you do not need all the internediate table you can delete the unwanted tables at the end of your program.</p>
<pre><code>data new1 new2 new3 new4 new5;
set sashelp.class;
run;
proc sql;
drop table new1;
drop table new2;
drop table new3;
drop table new4;
quit;
</code></pre>