Hi,
Sometimes, and I do not know for what reason, it seems my sas log only shows the notes that are generated because I run something.
For instance, I'm running this :
data test;
i=1;
run;
And I get this in the log :
1 The SAS System 09:01 Monday, March 5, 2018
NOTE: Writing TAGSETS.SASREPORT13(EGSR) Body file: EGSR
NOTE: Compression was disabled for data set WORK.TEST because compression overhead would increase the size of the data set.
NOTE: The data set WORK.TEST has 1 observations and 1 variables.
NOTE: DATA statement used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds
Which option do I need to (re)set to also get the datastep in the log ?
Thanks
B
You probably have set one of the options, maybe:
options nosource;
Try setting that back to options source;
You can check your options with:
proc options; run;
You probably have set one of the options, maybe:
options nosource;
Try setting that back to options source;
You can check your options with:
proc options; run;
Hi RW9,
This is it ! Thanks !
I noted my predecessor had set the options nosource somewhere.
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.