How to suppress the display of output dataset nodes in EG? - RunSubmit.com most recent 30 from http://www.runsubmit.com 2010-07-29T19:52:46Z http://www.runsubmit.com/feeds/question/189 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://www.runsubmit.com/questions/189/how-to-suppress-the-display-of-output-dataset-nodes-in-eg How to suppress the display of output dataset nodes in EG? jay.l.stevens 2010-01-07T02:43:23Z 2010-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#190 Answer by Lorbat for How to suppress the display of output dataset nodes in EG? Lorbat 2010-01-07T11:42:28Z 2010-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#191 Answer by MD4 for How to suppress the display of output dataset nodes in EG? MD4 2010-01-07T12:47:33Z 2010-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>