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 --<-----

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

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
  • 1798 views
  • 0 likes
  • 4 in conversation