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-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

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.

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