Hi guys @SASKiwi @JuanS_OCS, Thank you for your suggestion. @JuanS_OCSESP is running on a separte environment and writes data directly to Greenplum database. We are using SAS/ACCESS Interface GreenPlum in VA to connect the Greenplum database. We want to load some tables from this database to LASR and update the data frequently. @kiwi I have tried to write a SAS program to perform the load. Proc LASR, Append option works fine, but proc IMSTAT, update option not. Is there something wrong with my code? /* Load into server */
LIBNAME greenplum GREENPLM DATABASE= SERVER="" SCHEMA= USER="" PASSWORD="" ;
/* Assign the target library */
LIBNAME lasr SASIOLA TAG=lasr PORT=10051 SIGNER="https://va.example.com:443/SASLASRAuthorization" HOST="va.example.com" ;
/* Optimize Load With PROC LASR */
PROC LASR add data=lasr.dataset noclass port=10051;
performance host="va.example.com";
RUN;
/* Add new records to the the table */
DATA lasr.dataset (append=yes);
set greenplum.dataset;
RUN;
PROC IMSTAT data=lasr.dataset;
update data=greenplum.dataset;
RUN; Thanks in advance for your help
... View more