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 Hackathon registration is open! Build your skills. Make connections. Enjoy creative freedom. Maybe change the world.
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;

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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
  • 710 views
  • 0 likes
  • 2 in conversation