Retrieves information about CAS disk cache usage, the CAS server directory name, and the file system path for that cache.
proc cas; builtins.getCacheInfo; run;
proc cas; builtins.getCacheInfo / format=FALSE; run;
The getCacheInfo Action retrieves information about CAS disk cache usage, the CAS server directory name, and the file system path for that cache.
The 'format' parameter, when set to False, returns numeric values instead of human-readable formatted values. Its alias is 'formatted' and the default value is TRUE.
proc cas; session MonitorCDC; accessControl.assumeRole / adminRole="superuser"; builtins.getCacheInfo result=results; describe results; run; print results.diskCacheInfo; run; quit;
proc cas; /* ------------------------------------------------------------------- OBJECTIF : Auditer l'espace disque du CAS_DISK_CACHE PRÉREQUIS : Droits suffisants pour assumer le rôle de Superuser ------------------------------------------------------------------- */...