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
SAS For Dummies 3rd Edition! Check out the new edition, covering SAS 9.4, SAS Viya, and all of the modern ways to use SAS!
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;

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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