Search Results

725 résultats trouvés Page 2 / 73
Action CAS
Voir

importQKBFromCaslib

This action imports a Quality Knowledge Base (QKB) from a CAS library. It provides functionality for managing QKBs within the SAS Viya Platform environment, allowing users to load and utilize QKB definitions for data quality operations.

Action CAS
Voir

loadAudio

The loadAudio action loads audio files from a specified path and caslib into a CAS table. It is part of the Audio action set, which provides functionalities for processing audio data in SAS Viya.

Action CAS
Voir

loadTable

Loads a table from a caslib's data source into memory on the CAS server. This action is fundamental for making external data available for analysis in CAS. It supports various file types like CSV, SASHDAT, Parquet, and Excel, and allows for customization through import options.

Exemple
Voir

Simple Restoration of an Action Set

proc cas; builtins.actionSetFromTable / table={name='myActionSetTable', caslib='CASUSER'}; run; quit;

Exemple
Voir

Restoring an Action Set with a New Name and Verifying

proc cas; builtins.actionSetFromTable / table={name='myActionSetTable', caslib='CASUSER'} name='restoredSet'; run; builtins.actionSetInfo / actionSet='restoredSet'; run; quit;

Exemple
Voir

Basic Conversion of an Action Set to a Table

proc cas; action builtins.actionSetToTable / actionSet='myCustomActions' casOut={name='actions_definition_table', caslib='casuser'}; run; action table.fetch / table='actions_definition_table'; run; quit;

Exemple
Voir

Converting and Overwriting an Existing Table

proc cas; action builtins.actionSetToTable / actionSet='myCustomActions' casOut={name='actions_definition_table', caslib='casuser', replace=true}; run; action table.fetch / table='actions_definition_table'; run; quit;

Exemple
Voir

Promoting the Output Table for Global Access

proc cas; action builtins.actionSetToTable / actionSet='myCustomActions' casOut={name='actions_definition_table', caslib='casuser', promote=true}; run; action table.tableInfo / name='actions_definition_table'; run; quit;

Exemple
Voir

Monitoring an Asynchronous Action in Another Session

proc cas; session casauto name='MyNewSession'; /* Load some data into the new session */ cas MyNewSession; data casuser.cars; set sashelp.cars; run; /* Run a summary action asynchronously in 'MyNewSession' */ action simple.summary / table={name='cars', caslib='casuser'}, async='summaryJob'; ...

Exemple
Voir

Create a Simple Subdirectory

proc cas; table.addCaslibSubdir / caslib='myCaslib' path='new_data_folder'; run;