SAS Visual Analytics

Dashboards, reports, BI and analytics - all from a single interface.
BookmarkSubscribeRSS Feed
mernamaher
Calcite | Level 5

How to load table from sas program or sas flow to in memory database in sas to use it in reports ?

2 REPLIES 2
Bala_Saladi
Fluorite | Level 6

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;

 

Madelyn_SAS
SAS Super FREQ

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? 

sas-innovate-white.png

Our biggest data and AI event of the year.

Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.

Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.

 

Register now!

Tips for filtering data sources in SAS Visual Analytics

See how to use one filter for multiple data sources by mapping your data from SAS’ Alexandria McCall.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 2 replies
  • 647 views
  • 0 likes
  • 3 in conversation