/****************************************************************************** * Programme : Beispiel: PROC CASUTIL * Reference : BEISPI6C4F * Source : https://www.wearecas.eu/en/sampleCode/BEISPI6C4F ******************************************************************************/ /* --- BLOC 1 --- */ cas casauto sessopts=(caslib='casuser'); libname mylib cas; proc casutil; load data=sashelp.cars casout='cars' replace; partition casdata='cars' casout='carsWhere' replace where='MSRP>90000 and Make="Porsche"'; altertable casdata="carsWhere" keep={"make", "model", "MSRP"}; quit; proc print data=mylib.carsWhere;