I used to have the below base SAS code to append a sas table to an Oracle table. I want o convert it to CAS. Does anyone have any idea how to append a CAS table to an Oracle table? proc append base=Oracle.gtt_clm_t data=work.clms force nowarn; run;
... View more