Below code can be used to get the list of tables loaded on the LASR: LIBNAME LASRLIB SASIOLA TAG=VAPUBLIC PORT=10031 HOST=<HOSTNAME> SIGNER="http://<hostname>:<port_no>/SASLASRAuthorization" ; %let sizecols = InMemorySize UncompressedSize CompressedSize TableAllocatedMemory InMemoryMappedSize ChildSMPTableMemory VirtualMemory ResidentMemory AllocatedMemory; %let countcols = NumberRecords UseCount RecordLength ComputedColLength; data tablemem; set lasrlib._T_TABLEMEMORY; run; data lasrmem; set lasrlib._T_LASRMEMORY; run; proc print data=lasrmem; title "LASR Server Memory Usage"; format &sizecols. sizekmg9.2; format &countcols. 8.; sum _numeric_; run; proc print data=tablemem; title "LASR Server Table Memory Usage"; format &sizecols. sizekmg9.2; format &countcols. 8.; sum _numeric_; run;
... View more