|
On Thu, 28 Feb 2008 08:12:06 -0800, tinku <vamshi.reddy02@GMAIL.COM> wrote:
>Hi,
>
>I am sending you my FTP code and Log File
>
>FTP CODE:
>
>data wdata1;
>filename Wfile
>ftp 'filename.csv'
>host= 'ftp.update.com'
>user='abcd' pass='XXXX' recfm=v
>debug;
>infile Wfile firstobs=1 dlm="," dsd truncover Lrecl=1401; INPUT TKR
>$ ; run;
>
>LOG FILE:
>
>14
>15 data wdata1;
>16 filename Wfile
>17 ftp 'filename.csv'
>18 host= 'ftp. update.com'
>19 user='abcd' pass=XXXXXXXXX recfm=v
>20 debug;
>21
>22 infile Wfile firstobs=1 dlm="," dsd truncover Lrecl=1401;
>23 INPUT TKR $ ;
>24 run;
>
>ERROR: Open failed for file WFILE
>ERROR: 10060 - WSAETIMEDOUT.
>NOTE: The SAS System stopped processing this step because of errors.
>WARNING: The data set WORK.WDATA1 may be incomplete. When this step
>
>
>Can any one let me know what should i do to fix the things.
>
>Regards,
>Vamshi
You have an embedded space in the HOST= spec.
|