BookmarkSubscribeRSS Feed
KBACHU
Fluorite | Level 6

I am trying to run a bat file from SAS EG and bat file has a list of SAS programs. The bat file/SAS program seems to be executing but the SAS program doesnt create a log file. Is there any way a log file can be created?

 

data _null_;

    call system("T:\Test_Bat.bat");

    x "T:\Test_Bat.bat";

run;

    %sysexec("T:\Test_Bat.bat");

run;

3 REPLIES 3
TomKari
Onyx | Level 15

You'd need to open up the bat file, and add a log destination to the line that invokes SAS. I think the syntax is

 

-log "C:\whatever\mylog.log"

 

Tom

LinusH
Tourmaline | Level 20
A log is created by default, you might need to investigate where. You are talking about the individual SAS programs in the bat script, right?

It sounds like an awkward way of doing things. I can there's a need for scheduling purposes to create a bat file, but why do you need to execute it from EG?
Data never sleeps
Ksharp
Super User
Try this one . after executing , open log.txt

x "T:\Test_Bat.bat > c:\temp\log.txt ";

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

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
  • 5006 views
  • 1 like
  • 4 in conversation