- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 10-14-2024 11:34 AM
(583 views)
How to load table from sas program or sas flow to in memory database in sas to use it in reports ?
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Base SAS: load table into memory and utilize back from memory using data _null_. Try below code.
SAS Viya: Please refer to link
https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.3/casref/p0pw2zomel6mfan1iutjd85rrhn9.htm
data _null_;
set work.mytable;
run;
sasfile work.mytable load;
data _null_;
set work.mytable;
run;
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Are you asking about loading the table into memory in the CAS server or the LASR server? Which version of SAS Visual Analytics are you using?
-------------------------------------------------------------------------
Four tips to remember when you contact SAS Technical Support
Tricks for SAS Visual Analytics Report Builders
SAS Visual Analytics Learning Center