Reputation: 1603
I am using SAS Enterprise Guide and am running a program that runs for a long time (about 30 min).
I want to be able to do the following:
Is there a command that allows me to do the above? I am basically looking for something like a break/exit/quit statement that maintains the SAS Log.
Upvotes: 0
Views: 1669
Reputation: 63424
The Enterprise Guide way of doing this is to break your program into multiple smaller program files. Then you run each of those, either individually if you want to be able to see the details before moving on, or in a linked flow if you want to just run them whole thing and see outputs but not stop it (though you could always stop it using the stop button if something came up).
Upvotes: 1