BookmarkSubscribeRSS Feed
makset
Obsidian | Level 7


Hello


How can I split a log file in smaller pieces, when I start my bat program my log file is too large over 1GB.



Thank you for your help.

3 REPLIES 3
ballardw
Super User

Are you looking to do this as part of your batch program?

That can be done with PROC PRINTO;

filename file1 "c:\path\file1.log";

filename file2 "c:\path\file2.log";

<as many as you think you need>

add statements such as this to output data to separate files at strategic points in the program.

Proc Printo log=file1;run;

Proc prinnto; run; will return to default log behavior.

I would also look at what you have that is generating so much output such as options like MPRINT, MLOGIC, SYMBOLGEN,  the value for the ERRORS option and statements such as PUT and %PUT that may be writing to the log.

Ksharp
Super User

You mean split the LOG file while you are running the bat program. Check its parameter ,special for LOG parameter. But I didn't recall if there is such a function.

jakarman
Barite | Level 11

Do not generate that much logging in the SAS-log.

- Needing auditing compliance with SIEM there are better ways.
- Wanting a correct error/warning handling etc. design and do your coding/programming accordingly 

---->-- ja karman --<-----

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!

What is Bayesian Analysis?

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.

SAS Training: Just a Click Away

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

Browse our catalog!

Discussion stats
  • 3 replies
  • 1366 views
  • 0 likes
  • 4 in conversation