The table casuser.employees is partitioned onto 3 CAS worker nodes. Which SAS program will correctly accumulate a total of the salary variable and store it in the variable totalSalary?
Given the CAS table casuser.shoes and the following SAS program: data casuser.shoes2(where=(region="Africa" and Product="Slipper")); set casuser.shoes; keep Region Product Sales; run; Which statement is true?