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;
From my limited understanding of Viya the CASUTIL procedure is one way to do this. Check out the doc link and look at the SAVE statement which allows you write a CAS table to an external database via a Viya Data Connector.