Martin Reindl
Martin Reindl

Reputation: 1603

Break / Quit / Exit in SAS

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:

  1. Exit my program at a defined point.
  2. Examine the contents of the Log at this point.

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

Answers (1)

Joe
Joe

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

Related Questions