Fetch the specified saved result for a session.
| Parameter | Description |
|---|---|
| id | Specifies the results ID. The default value is 0. |
| tag | Specifies the results TAG. |
Load the Cars dataset into the active CAS session for analysis.
| 1 | |
| 2 | PROC CAS; |
| 3 | TABLE.loadTable / path="cars.sas7bdat" caslib="CASUSER" casout="cars"; |
| 4 | |
| 5 | RUN; |
| 6 |
Retrieves a result object from the session history using its numeric identifier.
| 1 | PROC CAS; SESSION.fetchresult / id=1; RUN; |
Retrieves a specific result object that was previously tagged, facilitating easier retrieval in batch processing or complex workflows.
| 1 | |
| 2 | PROC CAS; |
| 3 | |
| 4 | SESSION.fetchresult / tag="batch_summary_01"; |
| 5 | |
| 6 | RUN; |
| 7 |