LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (May 2007, week 3)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Sun, 20 May 2007 15:51:51 -0400
Reply-To:     Gerhard Hellriegel <gerhard.hellriegel@T-ONLINE.DE>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         Gerhard Hellriegel <gerhard.hellriegel@T-ONLINE.DE>
Subject:      Re: How can I avoid the emergence of the dialog box?

On Sun, 20 May 2007 09:20:22 -0700, ljmpll@SOHU.COM wrote:

>Hi, when I process some high frequency data, a dialog box always come >out in the SAS system every some time (about ten minutes) because of >the tremendous calculation work, such is: > >windows is full and must be cleared Enter > >F to file >P to print >S to save >C to clear the window without saving > >So, I have to choose the last option by my hand. If I don't do it, the >SAS system will stop the process until I choose the last option. >How can I do with it so as to avoid the emergence of the dialog box? >Or let the SAS system choose the last option automatically? . >Thank you!

Depends on, which window is full. Is it the Log window, you can try to avoid too much output with some options. E.g. you should set all macro options to no: nomprint nosymbolgen nomlogic. If you have still too much, nonotes could help you. A better way might be

proc printto log="file_for_log.log"; run;

If it is the output window, you could use ODS to bring your output to a file, or also PROC PRINTTO with PRINT=

So you can look for error messages and warnings in that file. Gerhard


Back to: Top of message | Previous page | Main SAS-L page