Hello-
I am running v9.3 TSIM1 and would like to redirect my SAS log and output to an external file using Proc Printto WITHOUT the output being automatically written to the "Results" log in PC SAS. The output being automatically directed to the "Results" log is large and slows down the performance of the SAS program dramatically. The reason for this is that I am running a SAS/STAT procedure using a "by" statement and this is useless output.
Here is the syntax I am using for the Proc Printto:
proc printto new log='c:\data\logfilex.txt' file='c:\data\logfilex.txt';
run;
The SAS log output is being successfully written out to the external file. In addition, SAS documentation recommends putting the log= and file= (or print=) options in the same Proc Printto statement. Note two things about this:
- Using two Proc Printtos -- one for the log= and a second for the file= -- has no effect on the "Results" log
- Using an "ODS Listing Close;" options statement also has no effect on output written to the "Results" log.
Any suggestions?
Hi, this works for me ...
proc printto log='z:\log.txt' print='z:\print.txt';
run;
proc means data=sashelp.class noprint;
run;
proc printto;
run;
There's nothing in the output window, here's the LOG ...
390 proc printto log='z:\log.txt' print='z:\print.txt';
391 run;
NOTE: PROCEDURE PRINTTO used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds
Results output is the ODS HTML destination. You can close and open that destination as needed to avoid output.
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.