BookmarkSubscribeRSS Feed
railfan1975
Fluorite | Level 6

I'm slightly OCD :smileylaugh: so having all of the datasets generated by my SAS program show up in the process flow window is very annoying.  I have searched and searched and cannot find a way to stop that from happening unless I either 1) set the number of datasets allowed to be displayed option to 0 or 2) use libname _all_ clear.  Option 1 still generates a note object anytime I run a program, which is just as annoying and option 2 doesn't really work either as all of my libraries are auto-assigned by a metadata server and I'd rather not have to re-assign as I often have many programs running in one SAS session and often run programs in parallel.

Does anyone know of an option to stop this from happening?

Thanks!

2 REPLIES 2
Peter_C
Rhodochrosite | Level 12

(tongue in cheek icon)

use base SAS instead of Enterprise Guide

then no process flow window data sets appear (having no process flow)

alternatively

perhaps you can minimize the process flow window

alternatively, use SAS Data Integration Studio - which appears to show less 

TomKari
Onyx | Level 15

To : (Raspberry icon!)

To : I have the same problem, which also irritates (OCD) me. I just put in a step to delete the intermediate datasets that I don't want, and then only the final datasets appear in the process flow:

proc sql;

drop table lib1.ds1;

drop table lib1.ds2;

quit;

Tom

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 3069 views
  • 1 like
  • 3 in conversation