Génération d’une clé SSH
ssh-keygen -q -t rsa -b 1024 -N » -f ~/.ssh/id_rsa cat ~/.ssh/id_rsa.pub>> ~/.ssh/authorized_keys chmod 600 ~/.ssh/authorized_keys && chmod 700 ~/.ssh/
ssh-keygen -q -t rsa -b 1024 -N » -f ~/.ssh/id_rsa cat ~/.ssh/id_rsa.pub>> ~/.ssh/authorized_keys chmod 600 ~/.ssh/authorized_keys && chmod 700 ~/.ssh/
Comment lister les tables d’une bibliothèque SAS ?
Un code simple pour créer une table en code SAS :
1 2 3 4 5 6 7 8 |
libname dbms vertica dsn=Vertica user=sas password=lnxsas; proc sql; connect using dbms; create table licenses as select * from connection to dbms ( SELECT * FROM licenses); quit; |