BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Billybob73
Quartz | Level 8

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

1 ACCEPTED SOLUTION

Accepted Solutions
RW9
Diamond | Level 26 RW9
Diamond | Level 26

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;

View solution in original post

2 REPLIES 2
RW9
Diamond | Level 26 RW9
Diamond | Level 26

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;
Billybob73
Quartz | Level 8

Hi RW9,

This is it ! Thanks !

I noted my predecessor had set the options nosource somewhere.

 

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 1607 views
  • 0 likes
  • 2 in conversation