Hi All,
I am trying a very simple SAS data step:
Data Tmplib.X;
Set Master.Response_Data;
Run;
Tmplib and Master are SAS libraries. Whenever I run this code in Batch I am getting the below message:
The data set Tmplib.X has 0 observations and 7 variables.
WARNING: Data set Tmplib.X was not replaced because this step was stopped.
But when I execute this same data step from a SAS session, I am getting correct result without any problem.
What is the meaning of Data set Tmplib.X was not replaced because this step was stopped ? (There were no errors present in the Log)
Can anybody please help.
Maybe library assigment in the batch?
Are your batch jobs running using the same user as the interactive ones? If they are different the the file permissions might not allow the batch job to read the file.
add
option no$syntaxcheck
at the start of the batch job see if it makes a difference.
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!
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.
Ready to level-up your skills? Choose your own adventure.