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.

 

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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