BookmarkSubscribeRSS Feed
ybz12003
Rhodochrosite | Level 12

Good morning, all:

 

I would like to save the SAS log in text file as record for furture review, how could I do it? Should I put the command statement at the begining of all the SAS code or at the end?  Please help, thanks.

 

For example, I would like to save the SAS log into "C:\Documment\SAS file\SAS log.txt"

4 REPLIES 4
LinusH
Tourmaline | Level 20

How do you use SAS?

If you run SAS in batch mode, a log is created by default.

 

Take a look at the LOG option, and PROC PRINTTO.

Data never sleeps
RW9
Diamond | Level 26 RW9
Diamond | Level 26

Hi,

 

At the point you want to send the log to a file run:

proc printto log= "C:\Documment\SAS file\SAS log.txt";
run;

And when you want to end outputting to file:

proc printto;
run;
Astounding
PROC Star

Note that PROC PRINTTO will move your log to the file you select.  You might want something slightly different ... keeping the log where it is, but sending a copy of it to a file that you choose.  You can do that with a different tool.

 

ALTLOG must be specified at SAS invocation, not in the middle of a program:

 

http://support.sas.com/documentation/cdl/en/hostwin/67962/HTML/default/viewer.htm#n02cl0iq0k1fmxn11p...

 

It will send a copy of the log to the destination that you choose, while leaving the original log in place.

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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
  • 4 replies
  • 1347 views
  • 3 likes
  • 5 in conversation