options sortthreads=0; After base M8 installation, apply these hotfixes (as of Q1 2024):
proc setinit; run; /* Look for: SAS 9.4 M8 (TS1M8) */ Output should show: SAS 9.4 M8 (TS1M8) and current date. This guide covers the most impactful changes in SAS 9.4 M8. For detailed procedure-specific changes, refer to the official SAS documentation for your licensed products.
ods graphics / attrpriority=color; /* M7 default */ M8 enables threading by default. Disable if needed:
options sortthreads=0; After base M8 installation, apply these hotfixes (as of Q1 2024):
proc setinit; run; /* Look for: SAS 9.4 M8 (TS1M8) */ Output should show: SAS 9.4 M8 (TS1M8) and current date. This guide covers the most impactful changes in SAS 9.4 M8. For detailed procedure-specific changes, refer to the official SAS documentation for your licensed products. sas 9.4m8
ods graphics / attrpriority=color; /* M7 default */ M8 enables threading by default. Disable if needed: After base M8 installation