BookmarkSubscribeRSS Feed
DmitryErshov
Obsidian | Level 7

In Properties for EG project I can specify maximum number of data sets to add to the project.

Can I specify maximum number of output data sets for tasks independently. For example, for task "SAS Code 1" - maximum 10 output data sets, for task "SAS Code 2" - maximum 2 sets, e.t.c.


Best wishes,

Dmitry  

2 REPLIES 2
CaseySmith
SAS Employee

Hi Dmitry,


Currently, no, there is not a way to specify the maximum number of output data sets for each task.  However, if there are output data sets you do not want added to the project/process flow, you can write them to a temp library, unassign the library at the end of your task/program code, and they will not get added to the project.  For example:

libname blah 'c:\temp';

data addToProject; x=1; run;
data blah.doNotAddToProject; x=1; run;

libname blah clear;


In this example, the first data set (addToProject) will get added to the project, but the second data set (doNotAddToProject) will not.

Casey


Register today and join us virtually on June 16!
sasglobalforum.com | #SASGF

View now: on-demand content for SAS users

DmitryErshov
Obsidian | Level 7

Thank you very much, Casey!

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 2199 views
  • 4 likes
  • 2 in conversation