BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.

I am seeing this error message in the log when I run multiple programmes in batch mode. This error is not seen when I run one programme at a time in batch mode. I request experts to kindly guide about it. 

 

As I am not seeing the error when I run one programme as a time in batch mode, is that the solution? Because that is taking lot of time because sometimes I have to run tens of programmes at a time. If some solution can be found to deal with the error, it would save lot of time and efforts. 

 

Thanks in advance!

 

- Dr. Abhijeet Safai

Dr. Abhijeet Safai
Associate Data Analyst
Actu-Real
1 ACCEPTED SOLUTION

Accepted Solutions
Ksharp
Super User
Add one more statetemt
"ods path ... "
before your "proc template ........"
Like :

/*自定义 模板*/
ods path work.tmp(update) sasuser.templat(update) sashelp.tmplmst(read);
proc template;
define style styles._journal;
parent=styles.journal;
style table from output / cellpadding=0 just=l;
end;
run;

View solution in original post

3 REPLIES 3
ballardw
Super User

You may need to describe a bit more detail of when this is encountered. If you are using multiple programs running simultaneously you may be running into an attempt to write a store that has not been created yet or perhaps was removed by another program.

 

Do you have any other warnings about the item store this was supposed to be written to?

If the content of the template isn't changing then it should only need to be written once if the store is make available.

Ksharp
Super User
Add one more statetemt
"ods path ... "
before your "proc template ........"
Like :

/*自定义 模板*/
ods path work.tmp(update) sasuser.templat(update) sashelp.tmplmst(read);
proc template;
define style styles._journal;
parent=styles.journal;
style table from output / cellpadding=0 just=l;
end;
run;
DrAbhijeetSafai
Pyrite | Level 9

@Ksharp , that really worked! This ods path statement worked. 

 

Thank you.

 

- Dr. Abhijeet Safai

Dr. Abhijeet Safai
Associate Data Analyst
Actu-Real

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

How to Concatenate Values

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 3 replies
  • 323 views
  • 3 likes
  • 3 in conversation