Thank you!
Yes, one gets among one of > 1000 notes in a large log file something like at the bottom at least.
No chance to see that if you don't spend half a day just to read every word in your logfile.
The only thing I can conclude:
To train myself into doing searches for 3 words more or less automatically every time I have a look in a log file:
1. "error"
2. "warning"
3. "uninitialized"
Is that common use and knowledge in the SAS user community? Or is there another way to cope with that? By instance a switch or configuration issue to prevent this autodeclarations at all?
Thank you in advance!
Christof
NOTE: SAS initialization used:
real time 0.16 seconds
cpu time 0.08 seconds
NOTE: AUTOEXEC processing beginning; file is /opt/sas/sas9root/autoexec.sas.
NOTE: AUTOEXEC processing completed.
1 data test;
2
3 length x 3.;
4 input x;
5
6 datalines;
NOTE: The data set WORK.TEST has 3 observations and 1 variables.
NOTE: DATA statement used (Total process time):
real time 0.02 seconds
cpu time 0.02 seconds
10 ;
11 run;
12
13
14 data x;
15 set test;
16 y=0;
17 if (x2=1) then y=1;
18 run;
NOTE: Variable x2 is uninitialized.
NOTE: There were 3 observations read from the data set WORK.TEST.
NOTE: The data set WORK.X has 3 observations and 3 variables.
NOTE: DATA statement used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds
19
20
NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414
NOTE: The SAS System used:
real time 0.71 seconds
cpu time 0.25 seconds
The SAS System