Search Results

442 résultats trouvés Page 43 / 45
Code Article
Voir

Get Started! A Beginner's Guide to Programming in the SAS® Cloud Analytic Services (CAS) Environment

proc cas; session casauto; table.promote / caslib='casuser' name='updated_transaction_history' targetlib='casuser'; quit;

Code Article
Voir

Get Started! A Beginner's Guide to Programming in the SAS® Cloud Analytic Services (CAS) Environment

proc cas; session casauto; /* Distribution de fréquence du statut de transaction groupé par année */ simple.freq / inputs={'transaction_status'} table={caslib='casuser', name='updated_transaction_history', groupby={name='year'}}; quit;

Code Article
Voir

Connecting SAS Viya to Cloudera Impala via ODBC

cas mySession sessopts=(messagelevel=all); caslib implib datasource=(srctype="impala", username="hadoop", server="sascdh01.race.sas.com", database="default"); proc casutil; load casdata="s_heart" in...

Code Article
Voir

SAS Viya Optimization: Emulating PROC SQL with CAS-Enabled PROC FedSQL

Code Article
Voir

SAS and Impala: How to Force Schema Resolution by Name in SQL Pass-Through

Code Article
Voir

SAS and Impala: How to Define a Request Pool via an ODBC Connection

Code Article
Voir

SAS Viya: How to Properly Manage the Creation and Deletion of CASLIBs

Code Article
Voir

SAS Viya: How to Properly Manage the Creation and Deletion of CASLIBs

Code Article
Voir

SAS Viya: How to Properly Manage the Creation and Deletion of CASLIBs

/* Exemple de macro boucle pour gérer les connexions Oracle */ %macro ora_libs; %local i authdomain schema; /* Boucle sur la liste des domaines d'authentification */ %do i=1 %to %sysfunc(countw(&auth_list)); %let authdomain = %scan(&auth_list, &i); %let sch...

Code Article
Voir

Should the CASLIB Option Be Repeated in the LIBNAME Statement?