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
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
Thank you very much, Casey!
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.
Ready to level-up your skills? Choose your own adventure.