<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Download file from URL of FTP site to SAS in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Download-file-from-URL-of-FTP-site-to-SAS/m-p/598080#M172416</link>
    <description>&lt;P&gt;I am trying to read file from FTP site , but I am getting following error while doing import .&lt;/P&gt;&lt;P&gt;can any one help?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: Unable to open parameter catalog: SASUSER.PARMS.PARMS.SLIST in update&lt;BR /&gt;mode. Temporary parameter values will be saved to WORK.PARMS.PARMS.SLIST.&lt;BR /&gt;ERROR: Open failed for file TEST&lt;BR /&gt;ERROR: Import unsuccessful. See SAS Log for details.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;filename test ftp
'S****.csv' 
cd = '/Home/abacb/'    /*directory of file*/
host= 'sftp.com'
user= 'uuuuu'
pass = 'xxxxx'
passive binary recfm=s
;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Mon, 21 Oct 2019 12:08:14 GMT</pubDate>
    <dc:creator>arunrami</dc:creator>
    <dc:date>2019-10-21T12:08:14Z</dc:date>
    <item>
      <title>Download file from URL of FTP site to SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Download-file-from-URL-of-FTP-site-to-SAS/m-p/598080#M172416</link>
      <description>&lt;P&gt;I am trying to read file from FTP site , but I am getting following error while doing import .&lt;/P&gt;&lt;P&gt;can any one help?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: Unable to open parameter catalog: SASUSER.PARMS.PARMS.SLIST in update&lt;BR /&gt;mode. Temporary parameter values will be saved to WORK.PARMS.PARMS.SLIST.&lt;BR /&gt;ERROR: Open failed for file TEST&lt;BR /&gt;ERROR: Import unsuccessful. See SAS Log for details.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;filename test ftp
'S****.csv' 
cd = '/Home/abacb/'    /*directory of file*/
host= 'sftp.com'
user= 'uuuuu'
pass = 'xxxxx'
passive binary recfm=s
;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 21 Oct 2019 12:08:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Download-file-from-URL-of-FTP-site-to-SAS/m-p/598080#M172416</guid>
      <dc:creator>arunrami</dc:creator>
      <dc:date>2019-10-21T12:08:14Z</dc:date>
    </item>
    <item>
      <title>Re: Download file from URL of FTP site to SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Download-file-from-URL-of-FTP-site-to-SAS/m-p/598088#M172417</link>
      <description>start by adding the DEBUG parameter to the filename statement. You should then see additional information in the log that may help in finding out the cause for the error message.</description>
      <pubDate>Mon, 21 Oct 2019 11:36:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Download-file-from-URL-of-FTP-site-to-SAS/m-p/598088#M172417</guid>
      <dc:creator>MichaelLarsen</dc:creator>
      <dc:date>2019-10-21T11:36:54Z</dc:date>
    </item>
    <item>
      <title>Re: Download file from URL of FTP site to SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Download-file-from-URL-of-FTP-site-to-SAS/m-p/598096#M172419</link>
      <description>&lt;P&gt;Nope. I am now getting any error while running filename statement .&amp;nbsp;&lt;/P&gt;&lt;P&gt;Error comes with proc import when I tried to read the file&lt;/P&gt;</description>
      <pubDate>Mon, 21 Oct 2019 12:07:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Download-file-from-URL-of-FTP-site-to-SAS/m-p/598096#M172419</guid>
      <dc:creator>arunrami</dc:creator>
      <dc:date>2019-10-21T12:07:07Z</dc:date>
    </item>
    <item>
      <title>Re: Download file from URL of FTP site to SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Download-file-from-URL-of-FTP-site-to-SAS/m-p/598097#M172420</link>
      <description>&lt;P&gt;tried data step getting below error..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt;&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/24960"&gt;@MichaelLarsen&lt;/a&gt; &amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13549"&gt;@Cynthia_sas&lt;/a&gt;&amp;nbsp; can you please suggest something&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;26 data _null_;&lt;BR /&gt;27 infile test obs=10;&lt;BR /&gt;28 input;&lt;BR /&gt;29 put _infile_;&lt;BR /&gt;30 run;&lt;/P&gt;&lt;P&gt;ERROR: Open failed for file TEST&lt;BR /&gt;ERROR: The connection has timed out..&lt;/P&gt;</description>
      <pubDate>Mon, 21 Oct 2019 12:15:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Download-file-from-URL-of-FTP-site-to-SAS/m-p/598097#M172420</guid>
      <dc:creator>arunrami</dc:creator>
      <dc:date>2019-10-21T12:15:54Z</dc:date>
    </item>
    <item>
      <title>Re: Download file from URL of FTP site to SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Download-file-from-URL-of-FTP-site-to-SAS/m-p/598102#M172424</link>
      <description>&lt;P&gt;Have you made sure that passwordless sftp &lt;STRONG&gt;&lt;EM&gt;works from the commandline&lt;/EM&gt;&lt;/STRONG&gt;?&lt;/P&gt;</description>
      <pubDate>Mon, 21 Oct 2019 12:41:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Download-file-from-URL-of-FTP-site-to-SAS/m-p/598102#M172424</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-10-21T12:41:33Z</dc:date>
    </item>
    <item>
      <title>Re: Download file from URL of FTP site to SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Download-file-from-URL-of-FTP-site-to-SAS/m-p/598114#M172433</link>
      <description>&lt;P&gt;If you are trying to access a SFTP site then please read the documentation:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.4&amp;amp;docsetId=lestmtsglobal&amp;amp;docsetTarget=p0xln1fiwsr340n1xxf4mkmfxp6f.htm&amp;amp;locale=da"&gt;https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.4&amp;amp;docsetId=lestmtsglobal&amp;amp;docsetTarget=p0xln1fiwsr340n1xxf4mkmfxp6f.htm&amp;amp;locale=da&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;currently you have specified the FTP protocol which will not work with SFTP.&lt;/P&gt;</description>
      <pubDate>Mon, 21 Oct 2019 13:03:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Download-file-from-URL-of-FTP-site-to-SAS/m-p/598114#M172433</guid>
      <dc:creator>MichaelLarsen</dc:creator>
      <dc:date>2019-10-21T13:03:17Z</dc:date>
    </item>
  </channel>
</rss>

