Tables
are loaded into memory in a non-distributed server with the SAS LASR Analytic Server engine.
A DATA step can be used. The following example demonstrates loading
the Prdsale table into memory after starting a server on port 10010.
To load a table to
memory:
Loading a Table to Memory for Non-Distributed Servers
libname server1 startserver port=10010 tag='hps';
data server1.prdsale;
set sashelp.prdsale;
run;
You can unload a table
from memory with the DATASETS procedure:
Unloading a Table with the DATASETS Procedure
proc datasets lib=server1;
delete prdsale;
quit;