BookmarkSubscribeRSS Feed
deleted_user
Not applicable
The project has summary tables for manipulating data (set to output only dataset), then queries, then summary tables to display, in that order. The stored process created from the project displays output from both the first set of summary tables task and the second set, very fraustrating, can't see any reason why?
2 REPLIES 2
ChrisHemedinger
Community Manager
If the data tables are created in the course of running the stored process, EG will try to display those tables in your project.

If you don't want one of the tables (for example, it's an intermediate result that you don't need to display), add a PROC DATASETS step to delete the extra table at the end of the stored process code. That way, EG won't detect it and attempt to show it within your project.

Chris
Check out SAS Innovate on-demand content! Watch the main stage sessions, keynotes, and over 20 technical breakout sessions!
deleted_user
Not applicable
Hi,

Tried this and it doesn't work. Tried a proc datasets at the end of the code and as close to the offending proc tabulate as I can, there is no effect.

Thanks

P

proc datasets library = work;
delete TABLE1 TABLE2 TABLE3;
quit;

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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
  • 686 views
  • 0 likes
  • 2 in conversation