Suchergebnisse

659 résultats trouvés Page 27 / 66
Code SAS
Voir

VARCHAR-Datenverwaltung in CAS

proc casutil; load casdata="saswork_table_with_char300.sas7bdat" casout="cas_table_with_varchar" outcaslib="casuser" importoptions=(filetype="basesas", dtm="auto", debug="dmsglvli", varcharconversion=16) ; run; quit; title;

Code SAS
Voir

VARCHAR-Datenverwaltung in CAS

proc cas; sessionProp.setSessOpt / caslib="casuser"; run; table.columninfo / table="cas_table_with_varchar"; quit;

Code SAS
Voir

Partitionierung und Sortierung von CAS-Tabellen

/* LIBNAME using the CAS engine */ libname CASWORK cas caslib=casuser; /* Changing the default location of all one level named tables */ /* from SASWORK to CASWORK */ options USER = CASWORK; /* Binds all CAS librefs and default CASLIBs to your SAS client */ caslib _all_ assign; %put &_sessref_;

Code SAS
Voir

Partitionierung und Sortierung im DATA Step unter CAS

libname CASWORK cas caslib=casuser; options USER = CASWORK; caslib _all_ assign; %put &_sessref_;

Code SAS
Voir

Informationen zur SAS Viya CAS-Umgebung

cas; %put &_sessref_; caslib _all_ assign; %put &sysvlong4.; cas casauto listabout; proc cas; about; run;

Code SAS
Voir

Definition und Verwaltung von benutzerdefinierten CAS-Aktionen

cas; caslib _all_ assign; /* Orginal code authored by Chris Ricciardi */ /* TB, compressedKB,compressedMB,compressedGB,compressedTB added by Steven Sober */ /* You must modify the path in the CASLIB USDA at the bottom of the code */ proc cas; builtins.defineActionSet / name="tableSizeHu...

Code SAS
Voir

Definition und Verwaltung von benutzerdefinierten CAS-Aktionen

PROC CAS; table.addCaslib / caslib='UDAS' dataSource={srctype='path'} path="/viyafiles/sasss1/userDefinedActionSets"; run; quit; proc cas; builtins.actionSetToTable / actionSet="tableSizeHuman" casOut={caslib="UDAS" name="tableSizeHuman" replace=True}; run; table.save / ...

Code SAS
Voir

Analyse und Transformation von Automobildaten mit CAS

libname CASWORK cas caslib=casuser; options USER = CASWORK; caslib _all_ assign; %put &_sessref_;

Code SAS
Voir

Analyse und Transformation von Automobildaten mit CAS

options caslib="casuser"; proc cas; session CASAUTO ; transform / table = 'cars' pipelines = { { name = 'tr1' inputs = {'mpg_city', 'mpg_highway'} function = {method = 'range'} }, { ...

Code SAS
Voir

ETL-Makro CAS-Dimension laden

proc casutil incaslib="mycaslib" outcaslib="mycaslib"; save casdata="&cas_indsn." replace; run; %ERREXIT: %mend;