Hello everyone,
I want to paralleled run multiple programs in a SAS EG project.
I know how to do this manually :
Mouse click and Turn on "Allow parallel execution on the same server".
My question is: Can I do it from SAS program?
use some sas option like: options parallelon='YES' ;???
Please advise.
Thank you!
If you want to do parallel processing in your SAS code then you will need SAS/CONNECT installed and licensed. Run PROC SETINIT and PROC PRODUCT_STATUS to confirm.
Here is the result I run the code.what i should do next?
Thanks you very much!
PROC SETINIT ;
RUN ;
*---SAS/CONNECT 31OCT2020 (CPU A);
proc product_status;
run;
/*
For SAS/CONNECT ...
Custom version information: 9.4_M
*/
Great, you are good to go.
Now check out this link - the way we do it is in Example 5:
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.
Ready to level-up your skills? Choose your own adventure.