I'm trying to SFTP files(SAS datasets or tokens) from one server to another server in SAS

前端 未结 2 1281
天涯浪人
天涯浪人 2021-01-20 06:12

This is first time I\'m trying to SFTP files using SAS.I tried using filename statement but getting some errors.

%let _user=userid;
  filename source sftp \'         


        
2条回答
  •  星月不相逢
    2021-01-20 06:38

    the SFTP Filename engine does not have a password parameter. SAS recommends using public key authentication.

    You can use the optionsx='-pw "YourP@ssw0rd!"' option, if you need to supply a password. optionsx will XXX out the values in the Log.

提交回复
热议问题