Hello
I have the following question
Usually, when I want to do several threads at the same time and then after doing them, start a thread that uses the results of previous threads, I use the following solution
systask command "START ""Batch"" /wait /min
""C:\Program Files\SAS\SASFoundation\9.2(32-bit)\sas.exe"" -batch -nosplash
-sysin ""&CodePatch.__TrRt_&NrFL._&Period._1_1_.sas"" -log ""&CodePatch"""
taskname=job2_for_data;
systask command "START ""Batch"" /wait /min
""C:\Program Files\SAS\SASFoundation\9.2(32-bit)\sas.exe"" -batch -nosplash
-sysin ""&CodePatch.__TrRt_&NrFL._&Period._1_2_.sas"" -log ""&CodePatch"""
taskname=job3_for_data;
waitfor _all_ job2_for_data job3_for_data;
systask command "START /realtime ""Batch""
""C:\Program Files\SAS\SASFoundation\9.2(32-bit)\sas.exe"" -batch -nosplash
-sysin ""&CodePatch.__TrRt_&NrFL._&Period._1_0_DL.sas"" -log ""&CodePatch""";
Currently, threads run another application at different intervals and after completing them I would like to automatically analyze the results and make a report. Has the community developed any solutions for this occasion?
... View more