Peter, PROC MEANS (and all of the traditional procedures) do NOT take advantage of the LASR server. In order to do the work in LASR, you need to use PROC IMSTAT. If you use the SASIOLA library engine to access data resident in a LASR server from a SAS session, be careful. If you run something like PROC MEANS against LASR data, SAS will pull all of the data out of LASR back to the SAS server to do the calculations. That might worth for a small data table, albeit somewhat inefficiently. Remember, however, that LASR is capable of holding tables in excess of several terabytes in memory-- attempting to perform a traditional SAS calculation, such a PROC MEANS on a a really large LASR table, you may swamp your SAS server. But that is why we created LASR. SAS wasn't able to scale to perform fast calculations on billions of rows of data, so we needed a different approach. Hope that clarifies thing, David.
... View more