e*******e 发帖数: 75 | 1 I'd appreciate help if anyone knows a way around the following problem:
I have a long do loop which takes a couple of hours to generate a dataset.
The program stops executing very time the log window is full.This means I
have to keep clearing the log periodically.
Is there code to suspend writing to the log? Or a way to automatically
clearing of the window? MANY THANKS :) |
s*r 发帖数: 2757 | 2 run sas in command line use -log Nul or -log logfile.txt |
p********a 发帖数: 5352 | 3 open sas pgms with SAS VIEW (can be download from SAS website), then run it |
i**f 发帖数: 1195 | 4 1 batch submit? it can save the results from log and output windows into txt
files
2 try options nonotes?... |
g*****d 发帖数: 526 | 5 dm 'log;clear;output;clear;'
加在循环里。 |
g*****d 发帖数: 526 | 6 dm 'log;clear;output;clear;'
加在循环里。 |