Search Results

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

CAS vs. SAS: Understanding the Performance and Behavior Differences of the Data Step

Code Article
Voir

Promoting CAS Tables: Understanding Scope and Avoiding the "Table not found" Error

proc cas; /* 1. Nettoyage : On supprime l'ancienne version globale si elle existe */ /* L'option quiet=TRUE évite une erreur si la table n'existe pas encore */ table.dropTable / caslib="Public" name="GL_PERIODS_Global" /* Nom final de la table publique */ q...

Code Article
Voir

Promoting CAS Tables: Understanding Scope and Avoiding the "Table not found" Error

Code Article
Voir

From SAS 9 to SAS Viya: The Complete Migration Guide from PROC SQL to PROC FedSQL

proc fedsql sessref=masession; create table casuser.resultat {options replace=true} as select * from casuser.source; quit;

Code Article
Voir

Beyond Macros: Data-Driven Programming with CAS in SAS Viya

Code Article
Voir

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

Code Article
Voir

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

Code Article
Voir

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

Code Article
Voir

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

proc cas; session casauto; /* Vérifier si la table existe */ table.tableexists result=r / caslib='casuser' name='updated_transaction_history'; if (r.exists) then do; /* Obtenir les infos de la table */ table.tableinfo / caslib='casuser' name='updated_transaction_history'; /...

Code Article
Voir

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