|
Actually I could test it, and it worked great:
filename webpor url
'http://www.sscnet.ucla.edu/issr/da/earthquake/LOMAPRIETA90.POR';
filename porcopy temp;
data _null_;
nbyte=-1;
infile webpor nbyte=nbyte recfm=s;
input;
file porcopy recfm=n;
put _infile_;
run;
proc convert spss=porcopy out=spssdata;
run;
hth
Paul Choate
DDS Data Extraction
(916) 654-2160
> -----Original Message-----
> From: SAS(r) Discussion [mailto:SAS-L@LISTSERV.UGA.EDU] On Behalf Of
> NScroggins
> Sent: Monday, March 06, 2006 12:37 PM
> To: SAS-L@LISTSERV.UGA.EDU
> Subject: Importing SPSS file from a URL
>
> I am trying to import a .por file from a web address.
>
> filename test url 'http://www.a.com/test.por';
> proc convert spss=test out=temp;
> run;
>
> Which did not run, I think I have to have SAS/ACCESS- which I do not
> have. Is there any other solution?
|