Search Results

725 résultats trouvés Page 68 / 73
Code Article
Voir

CAS Storage Optimization: Mastering the DVR Format When Loading Data

proc cas; /* Nettoyage préalable si nécessaire */ action table.droptable / name="somedata" quiet=true; /* Chargement optimisé */ upload / /* Récupération dynamique du chemin physique de la table SAS */ path="%sysfunc(pathname(work))/somedata.sas7bdat" /* Conf...

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

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

Code Article
Voir

CAS Storage Optimization: Mastering the DVR Format When Loading Data

proc cas; /* Nettoyage préalable si nécessaire */ action table.droptable / name="somedata" quiet=true; /* Chargement optimisé */ upload / /* Récupération dynamique du chemin physique de la table SAS */ path="%sysfunc(pathname(work))/somedata.sas7bdat" /* Conf...

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

caslib casuser list;

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

libname mycas cas caslib=casuser;

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'; /...