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!

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

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
  • 2589 views
  • 4 likes
  • 2 in conversation