I excuted the following program and have error message " ERROR: The connection has timed out.." filename DAAA url 'http://research.stlouisfed.org/fred2/series/DAAA/downloaddata/DAAA.csv' ; data BY_AAA(drop=dd); length dd $10; format date date9.; infile DAAA dlm="," dsd; input dd$ value; date=input(dd,yymmdd10.); if not missing(date) then output; run; filename DAAA clear; How to resolve this issue? I tried different method, but could not resolve it.
... View more