Hi Team, iam trying to read the file from remote server by making use of private key authentication in SAS code.but iam getting error.please help %let host = XXXXXXXXXXXXXXXXXXXXXXXX.com;
%let ftpuser = YYYYYYYYYY;
filename ftpin sftp "CCCCCCC..xls" recfm=f host="&host" user="&ftpuser"
recfm=f cd= "/AAA/ALL/SSS"
options="-oPort=40022 -i /hhh/uuuu/uuuu/.ssh/ggg.key -o StrictHostKeyChecking=no";
data _null_;
infile ftpin;
/* file ftpout;*/
input;
put _infile_;
run; error log: ERROR: An exception has been encountered.
Please contact technical support and provide them with the following traceback information:
The SAS task name is [OBJECT_E]
Segmentation Violation
Traceback of the Exception:
0xf548(?)
yxrasgn+0x294
yxrasgn+0x38 -- bridge stub
ytlibf+0xd80
yasany+0x4c8
yasany2+0x188
yttknx+0x1480
yalexec+0xf98
yalinln+0x4d8
yalproc+0x234
yalproc+0x38 -- bridge stub
sasxobj+0x3d8
vvtentr+0x194
_pthread_body+0xf0
... View more