A SAS developer needs to join a SAS dataset in the SAS work library with a CAS in-memory table. Which approach correctly accomplishes this in SAS Viya?
Select an answer to reveal the explanation.
Short Explanation and Infographic
Here's the deal — d is correct because both approaches are valid. B (loading the work dataset to CAS and joining in FEDSQL) leverages distributed CAS processing, which is preferred for large datasets.
Full explanation below image
Full Explanation
D is correct because both approaches are valid. B (loading the work dataset to CAS and joining in FEDSQL) leverages distributed CAS processing, which is preferred for large datasets. C (copying CAS table to work) works for smaller tables. A is partially correct in concept but the behavior depends on the SQL optimizer and the result may not always be optimal. D best captures the practical guidance.